[노드 1팀] 2장. 알아둬야 할 JavaScript
2.1. ES2015+변경 사항을 중심으로 ES2015 이상의 자바스크립트 문법에 대해 정리한다.const / let var는 함수 스코프를 갖는 반면, const와 let은 블록 스코프를 갖는다.if (true) {var x = 3;}console.log(x); // 3if (true) {const y = 3;}console.log(y); // ReferenceError: y is not defined const로 선언한 변수는 재할당할 수 없고, 선언할 때 반드시 값을 할당해야 한다.const a = 0;a = 1; //TypeError: Assignment to constant variableconst c; // SyntaxError: Missing initializer in const declar..
24-25/Node.js 1
2024. 10. 11. 10:01