function foo() {
x = 10;
}
foo();
console.log(x); // ?
์์ ์ฝ๋์์ x๋ ์ ์ธ๋์ง ์์๊ธฐ ๋๋ฌธ์ ReferenceError์ ๋ฐ์ ์ํฌ๊ฒ ๊ฐ์ง๋ง ์๋ฐ์คํฌ๋ฆฝํธ ์์ง์ ์ํด ์๋ฌต์ ์ผ๋ก ์ ์ญ ๊ฐ์ฒด x๊ฐ ๋์ ์์ฑ๋๋๋ฐ ์ด๋ฅผ ์๋ฌต์ ์ ์ญ์ด๋ผ๊ณ ํ๋ค. ์ด๋ฌํ ์๋ฌต์ ์ ์ญ์ ์ค๋ฅ๋ฅผ ๋ฐ์์ํค๋ ์์ธ์ด ๋ ๊ฐ๋ฅ์ฑ์ด ํฌ๊ธฐ ๋๋ฌธ์ strict mode๋ฅผ ์ฌ์ฉํ๋ค.
strict mode๋ ์๋ฐ์คํฌ๋ฆฝํธ ์ธ์ด์ ๋ฌธ๋ฒ์ ์ข ๋ ์๊ฒฉํ ์ ์ฉํ์ฌ ์ค๋ฅ๋ฅผ ๋ฐ์์ํฌ ๊ฐ๋ฅ์ฑ์ด ๋๊ฑฐ๋ ์๋ฐ์คํฌ๋ฆฝํธ ์์ง์ ์ต์ ํ ์์ ์ ๋ฌธ์ ๋ฅผ ์ผ์ผํฌ ์ ์๋ ์ฝ๋์ ๋ํด ๋ช ์์ ์ธ ์๋ฌ๋ฅผ ๋ฐ์์ํจ๋ค.
์ ์ญ์ ์ ๋ ๋๋ ํจ์ ๋ชธ์ฒด์ ์ ๋์ โuse strictโ;
๋ฅผ ์ถ๊ฐํ๋ค.
'use strict';
function foo() {
x = 10; // ReferenceError: x is not defined
}
foo();
์ธ๋ถ ๋ผ์ด๋ธ๋ฌ๋ฆฌ์ค non-strict mode๋ฅผ ์ฌ์ฉํ๋ ๊ฒฝ์ฐ๊ฐ ์๊ธฐ ๋๋ฌธ์ ์ฆ์ ์คํํจ์๋ก ์คํฌ๋ฆฝํธ ์ ์ฒด๋ฅผ ๊ฐ์ธ์ ์ค์ฝํ๋ฅผ ๊ตฌ๋ถํ๊ณ ์ ๋์ strict mode๋ฅผ ์ ์ฉํ๋๊ฒ์ด ๋ฐ๋์งํ๋ค.
ํจ์ ๋จ์๋ก๋ strict mode๋ฅผ ์ ์ฉํ ์ ์์ผ๋ ๋ชจ๋ ํจ์์ ์ผ์ผ์ด strict mode๋ฅผ ์ ์ฉํ๋๊ฒ์ ๋ฒ๊ฑฐ๋กญ๊ณ ๋ฐ๋์งํ์ง ๋ชปํ๊ธฐ ๋๋ฌธ์ ์ฆ์ ์คํ ํจ์๋ก ๊ฐ์ผ ์คํฌ๋ฆฝํธ ๋จ์๋ก ์ ์ฉํ๋๊ฒ์ด ๋ฐ๋์งํ๋ค.
์ ์ธํ์ง ์์ ๋ณ์๋ฅผ ์ฐธ์กฐํ๋ฉด ReferenceError๊ฐ ๋ฐ์ํ๋ค.
(function () {
'use strict';
x = 1;
console.log(x); // ReferenceError: x is not defined
}());
delete ์ฐ์ฐ์๋ก ๋ณ์, ํจ์, ๋งค๊ฐ๋ณ์๋ฅผ ์ญ์ ํ๋ฉด SyntaxError๊ฐ ๋ฐ์ํ๋ค.
(function () {
'use strict';
var x = 1;
delete x;
// SyntaxError: Delete of an unqualified identifier in strict mode.
function foo(a) {
delete a;
// SyntaxError: Delete of an unqualified identifier in strict mode.
}
delete foo;
// SyntaxError: Delete of an unqualified identifier in strict mode.
}());
์ค๋ณต๋ ๋งค๊ฐ๋ณ์ ์ด๋ฆ์ ์ฌ์ฉํ๋ฉด SyntaxError๊ฐ ๋ฐ์ํ๋ค.
(function () {
'use strict';
//SyntaxError: Duplicate parameter name not allowed in this context
function foo(x, x) {
return x + x;
}
console.log(foo(1, 2));
}());
with ๋ฌธ์ ์ฌ์ฉํ๋ฉด SyntaxError๊ฐ ๋ฐ์ํ๋ค. with๋ฌธ์ ์ฑ๋ฅ๊ณผ ๊ฐ๋ ์ฑ์ด ๋๋น ์ง๋ ๋ฌธ์ ๊ฐ ์๊ธฐ ๋๋ฌธ์ with๋ฌธ์ ์ฌ์ฉํ์ง ์๋๊ฒ์ด ์ข๋ค.
(function () {
'use strict';
// SyntaxError: Strict mode code may not include a with statement
with({ x: 1 }) {
console.log(x);
}
}());
strict mode์์ ํจ์๋ฅผ ์ผ๋ฐ ํจ์๋ก์ ํธ์ถํ๋ฉด this์ undefined๊ฐ ๋ฐ์ธ๋ฉ๋๋ค.
(function () {
'use strict';
function foo() {
console.log(this); // undefined
}
foo();
function Foo() {
console.log(this); // Foo
}
new Foo();
}());
strict mode์์๋ ๋งค๊ฐ๋ณ์์ ์ ๋ฌ๋ ์ธ์๋ฅผ ์ฌํ ๋นํ์ฌ ๋ณ๊ฒฝํด๋ arguments ๊ฐ์ฒด์ ๋ฐ์๋์ง ์๋๋ค.
(function (a) {
'use strict';
// ๋งค๊ฐ๋ณ์์ ์ ๋ฌ๋ ์ธ์๋ฅผ ์ฌํ ๋นํ์ฌ ๋ณ๊ฒฝ
a = 2;
// ๋ณ๊ฒฝ๋ ์ธ์๊ฐ arguments ๊ฐ์ฒด์ ๋ฐ์๋์ง ์๋๋ค.
console.log(arguments); // { 0: 1, length: 1 }
}(1));