运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Objects</h1> <h2>The Object.seal() Method</h2> <p id="demo"></p> <script> "use strict" // Create Object const person = { firstName: "John", lastName: "Doe", age: 50, eyeColor: "blue" }; // Seal Object Object.seal(person) // Test Error let text = ""; try { delete person.age; text = Object.values(person); } catch (err) { text = err; } document.getElementById("demo").innerHTML = text; </script> </body> </html>