앞으로 살펴볼 프로퍼티 어트리뷰트를 이애하기 위해 먼저 내부 슬롯과 내부 메서드의 개념에 대해 알아보자. 내부 슬롯과 내부 메서드는 자바스크립트 엔진의 구현 알고리즘을 설명하기 위해 ECMAScript 사양에서 사용하는 의사 프로퍼티(pseudo property)와 의사 메서드(pseudo method)다. ECMAScript 사양에 등장하는 이중 대괄호([[...]])로 감싼 이름들이 내부 슬롯과 내부 메서드다. 자바스크립트 엔지의 내부 로직이므로 내부 슬롯과 내부 메서드에 직접적으로 접근하거나 호출할 수 있는 방법을 제공하지 않는다. 일부만 간접적으로 제공
ex) 모든 객체는 [[Prototype]]이라는 내부슬롯. 아래와 같이 접근 가능
const o = {};
// o.[[prototype]] //SyntaxError: Unexpected token '['
console.log(o.__proto__) //[Object: null prototype] {}
자바스크립트 엔진은 프로퍼티를 생성 시 프로퍼티의 상태(value, writable, enumerable, configurable)를 나타낸는 프로퍼티 어트리뷰트를 기본적으로 자동 정의. 직접접근할 수 없지만 Object.getOwnPropertyDescriptor 메서드를 사용해서 간접적으로 확인은 가능.
const person = {
name : 'Lee'
}
console.log(Object.getOwnPropertyDescriptor(person, 'name'))
//{ value: 'Lee', writable: true, enumerable: true, configurable: true }
첫 번째 매개변수에는 객체의 참조를, 두번째 매개변수에는 프로퍼티 키를 문자열로 전달. PropertyDescriptor 객체를 반환. 뒤에 -s를 붙인 getOwnPropertyDescriptors 메서드는 모든 프로퍼티의 프로퍼티 어트리뷰트 정보를 제공하는 프로퍼티 디스크립터 객체를 반환.
const person = {
name : 'Lee'
}
person.age = 20;
console.log(Object.getOwnPropertyDescriptors(person))
//{ value: 'Lee', writable: true, enumerable: true, configurable: true }
// //{
// name: {
// value: 'Lee',
// writable: true,
// enumerable: true,
// configurable: true
// },
// age: { value: 20, writable: true, enumerable: true, configurable: true }
// }
프로퍼티는 데이터 프로퍼티와 접근자 프로퍼티로 구분
프로퍼티가 생성될 때 [[Value]]의 값은 프로퍼티 값으로 초기화 [[Writable]] 등의 값은 true로 초기화. 이것은 프로퍼티를 동적으로 추가해도 마찬가지.
접근자 함수는 getter/setter 함수라고도 부른다. 접근자 프로퍼티는 getter와 setter 함수를 모두 정의할 수도 있고 하나만 정의할 수도.
const person = {
// 데이터 프로퍼티
firstName : 'Minwook',
lastName : 'Byun',
// fullName은 접근자 함수로 구성된 접근자 프로퍼티
// getter 함수
get fullName() {
return `${this.firstName} ${this.lastName}`
},
//setter 함수
set fullName(name) {
// 배열 디스트럭처링 할당
[this.firstName, this.lastName] = name.split(' ');
}
};
// 데이터 프로퍼티를 통한 프로퍼티 값의 참조
console.log(person.firstName + ' ' + person.lastName); //Minwook Byun
// 접근자 프로퍼티를 통한 프로퍼티 값의 저장
// fullName에 값을 저장하면 setter 함수가 호출
person.fullName = "Boram Lee";
console.log(person); //{ firstName: 'Boram', lastName: 'Lee', fullName: [Getter/Setter] }
// 접근자 프로퍼티를 통한 프로퍼티 값의 참조
// fullName에 접근하면 getter 함수가 호출된다
console.log(person.fullName) //Boram Lee
// firstName은 데이터 프로퍼티
let discriptor = Object.getOwnPropertyDescriptor(person, 'firstName');
console.log(discriptor); //{ value: 'Boram',writable: true,enumerable: true,configurable: true}
// fullName은 접근자 프로퍼티
let descriptor = Object.getOwnPropertyDescriptor(person, 'fullName');
console.log(descriptor);
//{ get: [Function: get fullName], set: [Function: set fullName], enumerable: true, configurable: true }
person 객체의 firstName과 lastName 프로퍼티는 일반적인 데이터 프로퍼티. 메서드 앞에 get, set이 붙은 메서드 이것들이 바로 gettr와 setter 함수이고 getter/setter 함수의 이름 fullName이 접근자 프로퍼티. 접근자 프로퍼티는 자체적으로 값을 가지지 않으며 다만 데이터 프로퍼티의 값을 읽거나 저장할 때 관여할 뿐(value값이 없당!)
새로운 프로퍼티를 추가하면서 프로퍼티 어트리뷰트를 명시적으로 정의, 기존 프로퍼티의 프로퍼티 어트리뷰트를 재정의하는 것을 말한다. Object.defineProperty 메서드를 사용하면 프로퍼티의 어트리뷰트를 정의할 수 있다.
Object.defineProperty 메서드는 한 번에 하나의 프로퍼티만 정의할 수 있다. Object.definePropeties 메서드를 사용하면 여러 개의 프로퍼티를 한 번에 정의할 수 있다.
구분 | 메서드 | 프로퍼티 추가 | 프로퍼티 삭제 | 프로퍼티 값 읽기 | 프로터피 값 쓰기 | 프로퍼티 어트리뷰트 재정의 |
---|---|---|---|---|---|---|
객체 확장금지 | Object.preventExtensions | x | o | o | o | o |
객체 밀봉 | Object.seal | x | x | o | o | x |
객체 동결 | Object.freeze | x | x | o | x | x |
자바스크립트는 객체의 변경을 방지하는 다양한 메서드 제공하며 각각 객체의 변경을 금지하는 강도가 다르다.
Object.preventExtensions 메서드는 객체의 확장을 금지한다. 확장이 금지된 객체는 프로퍼티 추가가 금지된다. 프로퍼티는 프로퍼티 동적 추가와 Object.defineProperty 메서드로 추가할 수 있다. 이 두가지 추가 방법이 모두 금지된다.
Object.seal 메서드는 객체를 밀봉한다. 객체 밀봉(seal)이란 프로퍼티 추가 및 삭제와 프로퍼티 어트리뷰트 재정의 금지를 의미한다. 즉, 밀봉된 객체는 읽기와 쓰기만 가능하다.
Object.freeze 메서드는 객체를 동결한다. 객체 동결이란 프로퍼티 추가 및 삭제와 프로퍼티 어트리뷰트 재정의 금지, 프로퍼티 값 갱신 금지를 의미한다. 즉, 동결된 객체는 읽기만 가능하다.
지금까지 살펴본 변경 방지 메서드들은 얕은 변경 방지로 직속 프로퍼티만 변경이 방지되고 중첩 객체까지는 영향을 주지 못한다. 따라서 Object.freeze 메서드로 객체를 동결하여도 중첩 객체까지 동결할 수 없다.