PropertyDescriptor(속성 설명자)란 무엇인가
Object에는 속성 설명자라는 것이 있습니다. 길게 말할 필요 없이 getOwnPropertyDescriptor, getOwnPropertyDescriptors 메서드를 통해 출력해봅시다. // PropertyDescriptor(속성 설명자)란 무엇인가 const objSample = { num: 1, string: "abc", symbol: Symbol.for("only One"), g: { a: 1, b: null, }, bark() { console.log(this.a); }, }; // 전체 특정 속성 // { value: 1, writable: true, enumerable: true, configurable: true } const propDesc = Object.getOwnPropertyD..