Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ajax
- node
- JS
- just-one-small-sip
- Prototype
- flex-basis
- flex-grow
- express-handlebars
- Engoo
- flex-shrink
- Express
- Sass
- 디자인패턴
- css variables
- regExp
- 정규표현식
- Node.js
- es6
- module wrapper function
- css grid
- close together
- img 확대
- css
- shit-christmas
- 무료 백엔드 배포
- Object.create
- flexbox
- select by attribute
- improve-iq-by-up-to-10%!
- css 오버레이
Archives
- Today
- Total
변수 선언 방식 본문
var, let, const 세가지 방식이 있다.
var: javascript가 처음 나왔을 때 이용되던 방식이지만 전역변수라는 점 때문에 새로 나온 let과 const에 밀려 사용되지 않고 있는 추세인 듯
let: es6, es2015에서 사용가능하며, 지역변수이고 다시 할당해야하는 변수일 경우 사용된다.
const: let과 비슷하나 다시 할당할 수 없다는 점이 다르다. 다시 할당할 수 없기 때문에 변수 선언할 때 값을 꼭 입력해야 한다.
만약 해당 변수가 재할당이 된다는 것을 알고 있는 상태일 때는 let을 쓰고 나머지 상황에서는 const를 쓰는게 좀 더 안전하고 건전한 방법이라고 배웠다.
'2021 프론트 엔드 로드맵 따라가기 > JS' 카테고리의 다른 글
Object literal (0) | 2021.05.27 |
---|---|
Arrays (0) | 2021.05.27 |
String (0) | 2021.05.27 |
primitive types & referece types (0) | 2021.05.27 |
console (0) | 2021.05.27 |
Comments