大叔爱吃猕猴桃 const person = { name: "Lydia Hallie" }; Object.seal(person); 使用 Object.seal 我们可以防止新属性 被添加,或者存在属性 被移除. 然而,你仍然可以对存在属性进行更改。