🦎 JavaScript/모던 자바스크립트 Deep Dive

[모던 자바스크립트 deep dive] 20장 strict mode

하나둘세현 2024. 1. 23. 18:58
728x90

strict mode

function foo() {
  x = 10;
}

foo();

console.log(x); // 10

 

\전역 스코프에도 x 변수의 선언이 존재하지 않기 때문에 ReferenceError를 발생할 것같지만 자바스크립트 엔진은 암묵적으로 전역 객체에 x 프로퍼티를 동적 생성한다.

이때 전역 객체의 x 프로퍼티는 마치 전역 변수처럼 사용 가능

위의 현상을 암묵적 전역이라고 한다. 

 

잠재적인 오류를 발생시키기 어려운 개발 환경을 만들고 그 환경에서 개발하는 것이 해결책

이를 지원하기 위해 ES5부터 strict mode(엄격 모드)가 추가되었다.

strict mode는 자바스크립트 언어의 문법을 더 엄격히 적용하여 오류 발생 가능성이 높거나 자바스크립트 엔진의 최적화 작업에 문제를 일으킬 수 있는 코드에 대해 명시적인 에러 발생시킨다.

 

ESLint 같은 린트 도구사용시 strict mode와 유사한 효과 얻을 수 있다.


strict mode의 적용

strict mode를 적용하려면 전역의 선두 또는 함수 몸체의 선두에 'use strict';를 추가한다.

전역의 선두에 추가하면 스크립트 전체에 strict mode가 적용된다. 

"use strict";

function foo() {
  x = 10; //ReferenceError: x is not defined
}

foo();

 


전역에 strict mode를 적용하는 것은 피하자

전역에 적용한 strict mode는 스크립트 단위로 적용

<<!DOCTYPE html>
<html>
  <body>
    <script>
      "use strict";
    </script>
    <script>
      x = 1; //에러 발생 x
      console.log(x); //1
    </script>
    <script>
      "use script";
      y = 1; // ReferenceError: y is not defined
      console.log(y);
    </script>
  </body>
</html>

 

스크입트 단위로 적용된 strict mode는 다른 스크립트에 영향을 주지 않고 해당 스크립트에 한정되어 적용된다.

 

외부 서드파티 라이브러리를 사용하는 경우 라이브러리가 non-strict mode인 경우도 있기에

전역에 strict mode를 적용하는 건 바람직 x


함수 단위로 strict mode를 적용하는 것도 피하자

함수 단위로  strict mode 적용가능

(function () {
  // non-strict mode
  var let = 10; // 에러가 발생x
  function foo() {
    "use strict";

    let = 20; //SyntaxError
  }
  foo();
})();

 

strict mode는 즉시 실행 함수로 감싼 스크립트 단위로 적용하는 것이 바람직


strict mode가 발생시키는 에러

strict mode를 적용할 때 에러가 발생하는 대표적인 사례

암묵적 전역

선언하지 않은 변수를 참조하면 ReferenceError 발생

(function () {
  "use strict";

  x = 1;
  console.log(x); // Reference: 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 문의 사용

with문을 사용하면 SyntaxError 발생

with문은 전달된 객체를 스코프 체인에 추가

with문은 동일한 객체의 프로퍼티를 반복해 사용할 때 객체 이름을 생략할 수 있어 코드가 간단해지는 효과있지만 가독성 bad

=> with문은 사용하지 않는게 좋다. 

(function() {
    'use strict;
    // SyntaxError: Strict mode code may not include a with statement
    with({x:1}) {
        console.log(x);
    }
}());

 


strict mode 적용에 의한 변화

일반 함수의 this

strict mode에 함수를 일반 함수로서 호출하면 this에 undefined가 바인딩

생성자 함수가 아닌 일반 함수 내부에서는 this를 사용할 필요x -> 에러 발생 x

(function () {
  "use strict";

  function foo() {
    console.log(this); //undefined
  }
  foo();

  function foo() {
    console.log(this); //Foo
  }
  new Foo();
}());

arguments 객체

strict mode에서 매개변수에 전달된 인수를 재할당하여 변경해도 arguments 객체에 반영x

(function (a) {
  "use strict";
  // 매개변수에 전달된 인수를 재할당하여 변경
  a = 2;

  // 변경된 인수가 arguments 객체에 반영되지 않는다.
  console.log(arguments); // { 0: 1, length: 1 }
})(1);

 

728x90