Stric Mode(엄격 모드)는 기존의 자바스크립트의 느슨한 모드(default)를 해제하는 방법입니다
'use strict'
~~
function strict() {
'use strict';
function nested() {
return "And so am I!";
}
return "Hi! I'm a strict mode function! " + nested();
}
function notStrict() {
return "I'm not strict.";
}
NaN 에 할당하는 것은 예외를 발생 시킵니다확장불가객체란
Object.preventExtensions() 메서드가 적용된 객체를 말합니다.