Recommended
Portafolio Da4 14 09 2009 EDSON MARROQUIN
Clearwire Company And Technology Overview
Four Flippin Boxes - 9 12 12
Prevalence And Factors Associated With Smoking Among Students And Staff In Upm
Wisdom Circles Presentation09
Ny State Lote Check Point B Exam, Yuqing Hong
Kloet Onderhoud - Bedrijfsprofiel
Biggest Fan Contest Entry
More Related Content
Portafolio Da4 14 09 2009 EDSON MARROQUIN
Clearwire Company And Technology Overview
Four Flippin Boxes - 9 12 12
Viewers also liked (18)
Prevalence And Factors Associated With Smoking Among Students And Staff In Upm
Wisdom Circles Presentation09
Ny State Lote Check Point B Exam, Yuqing Hong
Kloet Onderhoud - Bedrijfsprofiel
Biggest Fan Contest Entry
EcmaScript 5.116. Закрытие объектаvaruser={name:"Вася",/* ... */}Object.preventExtensions(user)user.a=5// Нельзя добавлять свойстваObject.seal(user)deleteuser.name// Нельзя удалять свойстваObject.freeze(user)user.name='Петя'// Нельзя менять свойства 23. JSON – любые объектыfunctionRoom(number){this.toJSON=function(){returnnumber}}event={title:"Conference",date:newDate(),room:newRoom(22)}JSON.stringify(event){"title":"Conference","date":"2011-02-15T09:12:06.836Z","room":22} 24. JSON – любые объектыfunctionRoom(number){this.toJSON=function(){returnnumber}}event={title:"Conference",date:newDate(), Date.prototype.toJSONroom:newRoom(22)}JSON.stringify(event){"title":"Conference","date":"2011-02-15T09:12:06.836Z","room":22} 36. use strictalert(010)// SyntaxError (octal literals deprecated)a=5// ReferenceError (undeclared a)obj.notWritable=...// TypeErrordeleteobj.notConfigurable// TypeErroreval("var a = 5")alert(a)// ReferenceError (undeclared a)arguments.callee// TypeErrorarguments.caller// TypeError(function(){alert(this)// undefined вместо window})()with(..)// SyntaxError, 'with' statement