new 연산자와 함께 Obejct 생성자 함수를 호출하면 빈 객체를 생성 후 반환한다. 그 이후 프로퍼티 또는 메서드를 추가해 객체를 완성할 수 있다.
// 빈 객체 생성
const person = new Object();
// 프로퍼티 추가
person.name = 'Lee';
new Object
와 같이 new 연산자와 함께 호출하여 객체를 생성하는 함수를 말한다. 생성자 함수에 의해 생성된 객체를 인스턴스
라 한다.String
Number
Boolean
Function
Array
Date
RegExp
Promise
등의 빌트인 생성자 함수를 제공한다.const a = new String('Lee'); // String { 'Lee' }
const b = new Number(123); // Number { 123 }
const c = new Boolean(true); // Boolean { true }
const d = new Array(1, 2, 3); // [1, 2, 3]
const e = new RegExp(/ab+c/i); // /ab_c/i
const date = new Date(); // 현재 시간 데이터
const f = new Function('x', 'return x + x'); // ƒ anonymous()
// 위에서 생성한 객체들은 object 타입이다.
// 하지만 Function은 object가 아닌 'function' 타입이다.
// 객체 리터럴 방식의 생성
const a = { name: 'Lee', age: 20 }
const circle1 = {
radius: 5,
getDiameter() {
return 2 * this.radius;
}
};
circle1.getDiameter(); // 10
const circle2 = {
radius: 10,
getDiameter() {
return 2 * this.radius;
}
};
circle2.getDiameter(); // 20
// 위와 같이 리터럴을 통해 작성하게 되면 손수 데이터를 기술해야 한다.
// 한두 개라면 문제가 없지만 수십개라면 이야기가 달라진다.
function Circle(radius) { // Constructor
this.radius = radius;
this.getDiameter = function() {
return 2 * this.radius;
}
}
// 인스턴스 생성
const circle1 = new Circle(5); // 10
const circle2 = new Circle(10); // 20
const circle3 = Circle(15);
console.log(circle3); // 반환문이 없으므로 undefined
console.log(radius); // 15. 일반 함수로 호출된 this는 전역객체를 가리킨다.
function Circle(radius) {
// 인스턴스 초기화
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
}
const circle1 = new Circle(5); // 인스턴스 생성
<생성 과정>
function foo() {}
foo.prop = 10; // 프로퍼티 소유 가능
foo.method = function () {
console.log(this.prop);
}
foo.method(); // 10
함수는 함수로서 동작하기 위해 함수 객체만을 위한 [[ Environment ]], [[ FormalParameters ]] 등의 내부 슬롯과 [[ Call ]], [[ Construct ]] 같은 내부 메서드를 추가로 가지고 있다.
내부 메서드 Call을 가지는 함수 객체를 callable
, Construct를 가지는 함수 객체를 constructor
, Construct를 가지지 않는 함수 객체를 non-constructor
라 부른다. (constructor, non-constructor의 차이는 생성자 함수로서 호출 가능 여부로 구분)
모든 함수 객체는 Call을 가지고 있어 호출할 수 있다. 하지만 모든 함수 객체가 Construct를 가지는 것은 아니다.
Call → constructor
Call → non-constructor
constructor
→ 함수 선언문, 함수 표현식, 클래스non-constructor
→ 메서드, 화살표 함수// 아래는 constructor
function a() {};
const a = function () {};
const a = {
x: function () {}
// 프로퍼티 x의 값으로 할당된 건 일반 함수로 정의된 함수이다. 메서드로 인정되지 않는다.
};
new b();
new a.x();
// 아래는 non-constructor
const arrow = () => {};
new arrow(); // 타입에러: not a constructor
const b = {
x() {} // ES6 메서드 축약 표현은 메서드로 인정된다.
};
new obj.x(); // 타입에러: not a constructor
non-constructor
함수 객체는 Construct
를 가지지 않는다. 따라서 생성자 함수로서 호출하면 타입 에러가 발생한다.constructor
이어야 한다.non-constructor
에 해당되는 함수들은 new 연산자와 함께 호출할 수 없다.function Person(data) {
this.data = data;
}
const person1 = Person('name'); // 일반 함수 호출
console.log(person1); // undefined
console.log(person1.data) // undefined
console.log(data); // 'name'
new.target
을 지원한다.new.target
은 this와 유사하게 모든 constructor 함수
내부에서 암묵적인 지역 변수와 같이 사용되며, 메타 프로퍼티
라고 부른다. 참고로 IE는 지원하지 않으니 주의해야 한다.<사용법>
new.target
을 사용하면 new 연산자와 함께 호출되었는지 확인할 수 있다.new.target
은 함수 자신을 가리킨다.new.target
은 undefined
이다.function Person(data) {
// new 연산자와 함께 호출되지 않았으면 new.target은 undefined이다.
if (!new.target) {
return new Person(data);
}
this.data = data;
}
const person1 = Person('name')
** <스코프 세이프 생성자 패턴>
function Person(data) {
// new 연산자와 함께 호출되지 않았다면 this는 전역 객체를 가리킨다.
if (!(this instanceof Person)) {
return new Person(data);
}
this.data = data;
}
const person1 = Person('name')
String
Number
Boolean
Function
Array
Date
RegExp
Promise
등은 new 연산자와 함께 호출되었는지를 확인한 후 적절한 값을 반환한다.Object
와 Function
생성자 함수는 new 연산자 없이 호출해도 함께 호출했을 때와 동일하게 동작한다.const obj = new Object(); // {}
const obj = Object(); // {}
const f = new Function('x', 'return x + x');
const f = Function('x', 'return x + x');
String
Number
Boolean
생성자 함수는 new 연산자가 있을 때와 없을 때가 다른 값을 반환한다.const str = String(123); // 123 type: string
const str = new String(123); // 123 type: object