// 如果存在一个对象 const obj = { a: 1, b: 2, c: 3, d: 4 } // 如何获得一个新对象,新对象包含除了c以外的所有key? // rest解构 const { c, ...newObj } = obj; console.log(newObj)