프로퍼티 어트리뷰트
내부 슬롯과 내부 메서드는 자바스크립트 엔진의 구현 알고리즘을 설명하기 위해 ECMAScript 사양에서 사용하는 의사 프로퍼티와 의사 메서드다. 이중 대괄호 "[[...]]"로 감싼 이름들이 내부 슬롯과 내부 메서드다. 내부 슬롯과 내부 메서드는 자바스크립트 엔진의 내부 로직이므로 원칙적으로 자바스크립트는 내부 슬롯과 내부 메서드에 직접적으로 접근하거나 호출할 수 있는 방법을 제공하지 않는다. 단, 일부 내부 슬롯과 내부 메서드에 한하여 간접적으로 접근할 수 있는 수단을 제공하기는 한다.
const o = {};
o.[[Prototype]] //Uncaught SyntaxError: Unexpected toke '['
o.__proto__ //Object.prototype
디스크립터 객체
자바스크립트 엔진은 프로퍼티를 생성할 때 프로퍼티의 상태를 나타내는 프로퍼티 어트리뷰트를 기본값으로 자동 정의한다.
const person = {name: "Kim"};
console.log(Object.getOwnPropertyDescriptor(person,'name'));
//{value: "Kim", writable:true, enumerable:true, configurable:true}
person.age = 20;
console.log(Object.getOwnPropertyDescriptor(person));
/*
{
name : {value: "Kim", writable:true, enumerable:true, configurable:true},
age : {value: 20, writable:true, enumerable:true, configurable:true}
}
*/
데이터 프로퍼티와 접근자 프로퍼티
데이터 프로퍼티: 키와 값으로 구성된 일반적인 프로퍼티다. 지금까지 살펴본 모든 프로퍼티는 데이터 프로퍼티다.
접근자 프로퍼티: 자체적으로는 값을 갖지 않고 다른 데이터 프로퍼티의 값을 읽거나 저장할 때 호출되는 접근자 함수로 구성된 프로퍼티다.
const person = {
//데이터 프로퍼티
firstName: 'yena',
lastName: 'Kim',
//접근자 프로퍼티
get fullName(){
return `${this.firstName} ${this.lastName}`;
},
set fullName(){
//배열 디스트럭처링 할당
[this.firstName, this.lastName] = name.split(` `);
}
}
let descriptor = Object.getOwnPropertyDescriptor(person, 'fullName');
console.log(descriptor);
//{get:f, set:f, enumerable:true, configurable:true}
프로퍼티 정의
const person = {};
//데이터 프로퍼티 정의
Object.defineProperty(person,'firstName',{
value: 'yena',
writable: true,
enumerable: true,
configurable: true
});
Object.defineproperty(person,'lastname',{
value: 'kim'
});
let descriptor = Object.getOwnPropertyDescriptor(person,'firstName');
console.log('firstName',descriptor);
// firstName {value:"yena", writable:true, enumerable:true, configurable:true}
descriptor = Object.getOwnPropertyDescriptor(person,'lastName');
console.log('lastName',descriptor);
// lastName {value:"Kim", writable:false, enumerable:false, configurable:false}
객체 변경 방지
구분 | 메서드 | 프로퍼티 추가 | 프로퍼티 삭제 | 프로퍼티 값 읽기 |
프로퍼티 값 쓰기 |
프로퍼티 어트리뷰트 재정의 |
객체 확장 금지 | Object.preventExtensions | X | O | O | O | O |
객체 밀봉 | Object.seal | X | X | O | O | X |
객체 동결 | Object.freeze | X | X | O | X | X |
'Javascript > javascript Core' 카테고리의 다른 글
[Javascript 강의] 11강 this (0) | 2021.10.09 |
---|---|
[Javascript 강의]10강. Prototype (0) | 2021.10.04 |
[Javascript 강의] 8강 스코프 (0) | 2021.09.25 |
[Javascript 강의] 7강 함수 (0) | 2021.09.18 |
[Javascript 강의] 6강 객체 (0) | 2021.09.14 |