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
Reference
이 문제에 관하여(JavaScript 투쟁 - 1부 | 변수 방어), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/abdelrahman_dwedar/javascript-struggles-part-1-defending-variables-1dhb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)