💡 생성자 함수(constructor) : new 연산자와 함께 호출하여 객체(인스턴스)를 생성하는 함수
-> 인스턴스(instance) : 생성자 함수에 의해 생성된 객체
const person = new Object();
person.name = 'Lee';
person.sayHello = function () {
console.log('Hi! My name is ' + this.name);
};
console.log(person); // {name: 'Lee', sayHello: f}
person.sayHello(); // Hi! My name is Lee
const circle1 = {
radius: 5,
getDiameter() {
return 2 * this.radius;
}
};
console.log(circle1.getDiameter()); // 10
const circle2 = {
radius: 10,
getDiameter() {
return 2 * this.radius;
}
}
console.log(circle2.getDiameter()); // 20
// 생성자 함수
function Circle(radius) {
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
}
// 인스턴스의 생성
const circle1 = new Circle(5); // Circle 객체 생성
const circle2 = new Circle(10); // Circle 객체 생성
console.log(circle1.getDiameter()); // 10
console.log(circle1.getDiameter()); // 20
💡 this
- 객체 자신의 프로퍼티나 메서드를 참조하기 위한 자기 참조 변수(self-referencing variable)
- this가 가리키는 값, this 바인딩은 함수 호출 방식에 따라 동적 결정
함수 호출 방식 this가 가리키는 값(this 바인딩) 일반 함수로서 호출 전역 객체 메서드로서 호출 메서드를 호출한 객체(마침표 앞 객체) 생성자 함수로서 호출 생성자 함수가 (미래에) 생성할 인스턴스 function foo() { console.log(this); } // 일반적인 함수로 호출 foo(); // window const obj = { foo }; // ES6 프로퍼티 축약 표현 // 메서드로 호출 obj.foo(); // obj // 생성자 함수로서 호출 const inst = new foo(); // inst
💡 바인딩 (name binding)
식별자와 값을 연결하는 과정을 의미 (ex. 변수 선언은 변수 이름(식별자)과 확보된 메모리 공간의 주소를 바인딩)
function Circle(radius) {
// 암묵적으로 인스턴스가 생성 this 바인딩
console.log(this); // Circle {}
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
}
function Circle(radius) {
// 1. 암묵적으로 인스턴스가 생성 this 바인딩
// 2. this에 바인딩되어 있는 인스턴스를 초기화
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
}
function Circle(radius) {
// 1. 암묵적으로 인스턴스가 생성 this 바인딩
// 2. this에 바인딩되어 있는 인스턴스를 초기화
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
}
// 3. 완성된 인스턴스가 바인딩된 this가 암묵적 반환
// 명시적으로 원시 값을 반환하면 원시 값 반환은 무시, 암묵적 this 반환
return 100;
}
// 인스턴스 생성. Circle 생성자 함수는 암묵적으로 this 반환
const circle = new Circle(1);
console.log(circle); // Circle {radius: 1, getDiameter: f}
function foo() {}
// 일반적인 함수로 호출 : [[Call]]이 호출, 모든 함수 객체는 [[Call]]이 구현
foo();
// 생성자 함수로서 호출 : [[Construct]] 호출
new foo();
// 일반 함수 정의: 함수 선언문, 함수 표현식
function foo() {}
const bar = function () {};
// 프로퍼티 x의 값으로 할당된 것은 일반 함수로 정의, 메서드로 인정 x
const baz = {
x: function () {}
};
// 일반 함수로 정의된 함수만이 constructor
new foo(); // -> foo {}
new bar(); // -> bar {}
new bar.x(); // -> x {}
// 화살표 함수 정의
const arrow = () => {};
new arrow(); // TypeError : arrow is not a constructor
// 메서드 정의 : ES6의 메서드 축약 표현만 메서드 인정
const obj = {
x() {}
};
new obj.x(); // TypeError : obj.x is not a constructor
// ex1)
// 생성자 함수로서 정의하지 않은 일반 함수
function add(x, y) {
return x + y;
}
// 일반 함수를 new 연산자와 호출
let inst = new add();
// 함수가 객체를 반환하지 않음 반환문 무시
console.log(inst); // {}
// 객체를 반환하는 일반 함수
function createUser(name, role) {
return { name, role};
}
inst = new createUser('Lee', 'admin');
// 함수가 생성한 객체 반환
console.log(inst); // {name: "Lee", role: "admin"}
// ex2)
// 생성자 함수
function Circle(radius) {
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
};
}
// new 연산자 없이 생성자 함수 호출 -> 일반 함수 호출
const circle = Circle(5);
console.log(circle); // undefined
// 일반 함수의 내부의 this는 전역 객체 window를 가르침
console.log(radius); // 5
console.log(getDiameter()); // 10
circle.getDiameter(); // TypeError: Cannot read property 'getDiameter' of undifined
function Circle(radius){
// 이 함수가 new 연산자와 함께 호출되지 않았다면 new.target은 undifined
if (!new.target) {
return new Circle(radius);
}
this.radius = radius;
this.getDiameter = function () {
return 2 * this.radius;
};
}
// new 연산자 없이 생성자 함수를 호출 하여도 new.target을 통해 생성자 함수로 호출
const circle = Circle(5);
console.log(circle.getDiameter());
💡 스코프 세이프 생성자 패턴 (scope-safe constructor)
// Scope-Safe Constructor Pattern function Circle(radius) { // 생성자 함수가 new 연산자와 함께 호출되면 함수의 선두에 빈 객체 생성 // this에 바인딩 this와 Circle은 프로토타입에 의해 연결 // 이 함수가 new 연산자와 호출되지 않았다면 this는 전역 객체 window를 가르킴 // 즉 this와 Circle은 연결되지 않음 if (!(this instanceof Circle)) { // new 연산자와 함께 호출 인스턴스 반환 return new Circle(radius); } this.radius = radius; this.getDiameter = function () { return 2 * this.radius; }; } // new 연산자 없이 생성자 함수를 호출해도 생성자 함수로 호출 const circle = Circle(5); console.log(circle.getDiameter()); // 10
let obj = new Object();
console.log(obj); // {}
obj = Object();
console.log(obj); // {}
let f = new Function('x', 'return x ** x');
console.log(f); // f anonymous(x) { return x ** x }
f= function('x', 'return x ** x');
console.log(f); // f anonymous(x) { return x ** x }
const str = String(123);
console.log(str, typeof str); // 123 String
const num = Number('123');
console.log(num , typeof num); // 123 number
const bool = Boolean('true');
console.log(bool, typeof bool); // true boolean
📖 참고도서 : 모던 자바스크립트 Deep Dive 자바스크립트의 기본 개념과 동작 원리 / 이웅모 저 | 위키북스