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 |
Tags
- c
- 경제
- 러닝 스칼라
- backend
- 챗GPT
- 백엔드
- 웹해킹
- 리눅스
- deep learning
- Javascript
- c++
- mysql
- BOF 원정대
- 인공지능
- ChatGPT
- 딥러닝
- Web
- Linux
- BOF
- hacking
- flask
- 러닝스칼라
- Scala
- hackerschool
- php
- Shellcode
- 파이썬
- hackthissite
- webhacking
- Python
Archives
- Today
- Total
jam 블로그
[es6] const, let 본문
728x90
const, let
javscript ES6 버전에서는 변수 선언시 이전 버전의 var 말고도 const, let 키워드가 추가되었습니다.
let
블록 스코프 변수로써 자신을 정의한 블록에서만 접근 가능하며 블록 밖에서는 볼 수 없습니다.
function letTest() {
let x = 10;
console.log(x); //10
if(true) {
let y= 20;
console.log(y); //20
}
console.log(y); //Reference Error Exception
}
const
읽기 전용 변수, 즉 값을 다시 할당할 수 없는 상수를 선언
const도 블록 스코프 변수라 let으로 선언한 변수와 규칙은 동일
다만, 객체 자신이 아닌 참조값이 저장하므로 객체 내부는 변경 가능
function constTest() {
const b = 10;
console.log(b); // 10
b = 20; // Assignment to constant variable.
}
참고문헌
- ECMAScript 6 길들이기 (http://www.yes24.com/Product/Goods/23904865?Acode=101)
'개발 및 관련 자료 > WEB' 카테고리의 다른 글
[React] React 기초 (0) | 2020.02.18 |
---|---|
React Webpack (babel4 + typescript) 작성하기 (0) | 2019.11.11 |
[es6] destructuring assignment (0) | 2019.10.20 |
[es6] parameter (0) | 2019.10.20 |
지긋지긋한 CORS 파헤쳐보자 (0) | 2019.10.20 |
Comments