javaScript
constructor 객체
mooyou
2024. 1. 28. 22:59
728x90
300x250
constructor는 객체를 생성할 때 호출되는 특별한 메서드이다.
객체의 'constructor'속성은 해당 객체를 생성한 함수를 참조한다.
예를들어, 클래스를 사용한 경우, 'myObject.constructor'는 클래스의 생성자 함수를 가리킨다.
class MyClass {
constructor() {
// ...
}
}
const myObject = new MyClass();
console.log(myObject.constructor); // MyClass 클래스의 생성자 함수를 참조
728x90
반응형