var object = { name: 'zhanhui', } Object.preventExtensions(object); object.age = 26; // 在非严格模式下,object.age是undefined // 在严格模式下,object.age会抛出错误