W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <h1>使用 "use strict":</h1> <h3>不允许删除 undeletable 属性。</h3> <p>在浏览器中激活调试(F12)以查看错误报告。</p> <script> "use strict"; delete Object.prototype; // 会引发错误 </script> </body> </html>