본문 바로가기
javaScript

constructor 객체

by mooyou 2024. 1. 28.
728x90
300x250

constructor는 객체를 생성할 때 호출되는 특별한 메서드이다.

객체의 'constructor'속성은 해당 객체를 생성한 함수를 참조한다.

예를들어, 클래스를 사용한 경우, 'myObject.constructor'는 클래스의 생성자 함수를 가리킨다.

class MyClass {
  constructor() {
    // ...
  }
}

const myObject = new MyClass();
console.log(myObject.constructor); // MyClass 클래스의 생성자 함수를 참조

 

728x90
반응형

댓글