[모던자바스크립트 Deep Dive] 17장. 생성자 함수에 의한 객체 생성
·
JavaScript
1. Object 생성자 함수new 연산자와 함께 Object 생성자 함수를 호출하면 빈 객체를 생성하여 반환한다. 빈 객체를 생성한 이후 프로퍼티 또는 메서들르 추가해서 객체를 완성할 수 있다.// 빈 객체의 생성const person = new Object();// 프로퍼티 추가person.name = 'lee';person.sayHello = function () { console.log('Hi my name is + this.name):};console.log(pesron); // {name: 'lee', sayHello: f}person.sayHello(); // Hi my name is lee 생성자 함수(constructor)란? new 연산자와 함께 호출하여 객체(인스턴스)를 생성하는 함수..