ESLint와 같은 린트 도구를 사용하면 strict mode보다 더욱 강력한 효과를 얻을 수 있다.
린트 도구
정적 분석 기능을 통해 소스코드를 실행하기 전에 소스코드를 스캔하여 문법적 오류만이 아닌 잠재적 오류까지 찾아내고 오류의 원인을 리포팅해주는 도구
// 전역의 선두에 추가 => 스크립트 전체에 적용
`use strict`;
function foo() {
x = 10; // ReferenceError: x is not defined
}
foo();
// 함수 몸체의 선두에 추가 => 해당 함수 & 중첩 함수에 적용
function foo() {
`use strict`;
x = 10; // ReferenceError: x is not defined
}
foo();
전역 strict mode
전역에 적용한 strict mode는 다른 스크립트에 영향을 주지 않고 해당 스크립트에 한정되어 적용된다. 그러나 strict mode 스크립트와 non-strict mode 스크립트를 혼용하면 오류를 발생시킬 수 있다.
함수 단위의 strict mode
어떤 함수는 strict mode를 적용하고 어떤 함수는 strict mode를 적용하지 않는 것은 바람직하지 않다. 또한 모든 함수에 일일이 strict mode를 적용하는 것 역시 번거로운 일이다.
따라서 strict mode는 즉시 실행 함수로 감싼 스크립트 단위로 적용하는 것이 바람직하다.
(function() {
`use strict`;
// ...
}());
(function() {
`use strict`;
x = 1;
console.log(x); // ReferenceError: x is not defined
}());
(function() {
`use strict`;
var x = 1;
delete x; // SyntaxError: Delete of an unqualified identifier in strict mode.
funcion foo(a) {
delete a; // SyntaxError: Delete of an unqualified identifier in strict mode.
}
delete foo; // SyntaxError: Delete of an unqualified identifier in strict mode.
}());
(function() {
`use strict`;
// SyntaxError: Duplicate parameter name not allowed in this context
function foo(x, x) {
return x + x;
}
console.log(foo(1, 2));
}());
(function() {
`use strict`;
// SyntaxError: Strict mode code may not include a with statement
with({ x: 1 }) {
console.log(x);
}
}());
(function() {
`use strict`;
function foo() {
console.log(this); // undefined
}
foo(); // 일반 함수로 호출
function Foo() {
console.log(this); // Foo
}
new Foo(); // 생성자 함수로 호출
}());
(function(a) {
`use strict`;
// 매개변수에 전달된 인수 재할당
a = 2;
// 변경된 인수가 arguments 객체에 반영되지 않음
console.log(arguments); // { 0: 1, length: 1 }
}(1));