Skip to content
On this page

엄격 모드(strict mode)

Title
엄격 모드(strict mode)
Category
JavaScript
Tags
Aliases
엄격 모드(strict mode)
Created
2 years ago
Updated
last year
  • 기존 JS에서는 허용되지만 실수를 유발할 수 있는 문법을 제한한다.
  1. 글로벌 변수 생성 불가
  2. 변수의 할당이 실패했을 때 예외 발생
  3. 삭제할 수 없는 프로퍼티에 예외 발생
  4. 전역에서 this가 undefined가 됨.

References

Released under the MIT License.