Variables
JavaScript Variables can be Declared in 4 ways
-automatically
-using var
-using let
-using const
var keyowrd was used in all JavaScript code from 1995 to 2015
var는 1995년부터 2015년까지 사용
let and const keywords were added to JavaSccript in 2015
2015년에 let과 const가 추가
var keyword should only be used in code written for older browsers
var는 이전 브라우저용으로 작성된 코드에서만 사용
let x = 5;
let y = 6;
let z = x + y;
When to Use var, let, const
1. Always declare variables
변수를 선언 할때
2. use const if the value should not changed
값이 변경 되어서는 안될 경우
3. use const if the type should not be changed
유형을 변경하지 않을 경우
4. use let if you can't use const
const를 사용 할 수 없는 경우
5. use var if you must support old browsers.
이전 브라우저를 지원해야 하는경우
'JavaScript' 카테고리의 다른 글
javascript - 배열 검색 search array (2) | 2024.10.17 |
---|---|
JavaScript Array.prototype.at() (0) | 2024.10.16 |
JavaScript document.getElementById (0) | 2024.10.01 |
javascript 성능 개선 (0) | 2024.09.04 |
[Javascript]마우스 좌표 가져오기 (0) | 2019.06.30 |