📉
자바스크립트 es6
  • javascript ES6
  • Untitled
Powered by GitBook
On this page

Was this helpful?

javascript ES6

IE 10버전 이상에선 'use strict'라는 키워드를 페이지 최상단에 추가하면

strict mode로 자바스크립트를 작성가능합니다.

strict mode에선 var 키워드 없이 변수를 선언하거나,

변수를 arguments라는 이상한 키워드로 선언하거나 그런 실수를 방지해줍니다.

strict mode에선 this 키워드를 일반함수 안에서 불렀을 때 undefined라는 값으로 강제로 지정해줍니다.

'use strict';

NextUntitled

Last updated 3 years ago

Was this helpful?