strict

박현석·2022년 9월 3일
1

Javascript ES6+

목록 보기
78/88
'use strict';
// 엄격 모드 strict mode
// 리액트와 같은 프레임워트 사용시 기본적으로 엄격 모드임
// var x = 1;
// delete x;

function add(x) {
  var a = 2;
  var b = a + x;
  console.log(this);
}
add(1);

const array = [1, 2, 3];
for (const num of array) {
  console.log(num);
}
profile
선한 영향력을 주는 사람

0개의 댓글