도리쓰에러쓰

[JavaScript] 객체에서 key 하나 깔끔하게 지우는 방법 본문

JavaScript/JS

[JavaScript] 객체에서 key 하나 깔끔하게 지우는 방법

강도리 2022. 11. 3. 23:18

1️⃣ delete 명령어

const obj = { a: 1, b: 2, c: 3};

delete obj.b;
console.log(obj); // { a: 1, c: 3 }

 

2️⃣ 구조 분해 할당 (Destructuring Assignment)

const obj = { a: 1, b: 2, c: 3};

const { b, ...objWithoutB } = obj;
console.log(objWithoutB); // { a: 1, c: 3 }
Comments