> For the complete documentation index, see [llms.txt](https://gms30737.gitbook.io/es6/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gms30737.gitbook.io/es6/master.md).

# javascript ES6

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

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

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

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

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

```javascript
'use strict';

```
