JavaScript 투쟁 - 1부 | 변수 방어

JS에서 변수를 방어하는 것은 나름의 방식이 있습니다.



변수를 방어하는 세 가지 방법이 있습니다 let , var , const .



바르
허락하다
상수


변하기 쉬운



블록 범위




글로벌 범위



배열 만들기





We mostly use let because of the block scope which I'll explain in the below. 👇🏻



허락하다

The keyword let makes a variable only useable within the scope it made in, you can't use it outside that scope.

E.g.

{
    let num = 10;
    console.log(num); // Outputs: 10
}
console.log(num); // ERROR

바르

The keyword var makes a global variable, you can use it everywhere in the code.

E.g.

{
    let num = 10;
    console.log(num); // Outputs: 10
}
console.log(num); // Outputs: 10

상수

The keyword const makes an unchangeable variable, you can't change its value.

E.g.

const pi = 3.14159265359;
pi = 4; // ERROR

좋은 웹페이지 즐겨찾기