Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.04 KB

File metadata and controls

57 lines (38 loc) · 1.04 KB

var, let, const

  • var는 function-scoped이고, letconst는 block-scoped이다.

function-scoped / block-scoped

  • function-scoped: 함수 내에서만 유효
function counter(){
	for(var i=0; i<10; i++){
		console.log('i', i)
	}
}
console.log('i', i) // ReferenceError: i is not defined
  • block-scoped: 블록{} 내에서만 유효

자료형 비교

var let const
재선언 O X X
재할당 O O X
  • var
var a = 'test1' 
var a = 'test2' // 변수 재선언 O
a = 'test3'		// 변수 재할당 O
  • let
let a = 'test1'
let a = 'test2' // 변수 재선언 X
a = 'test3'		// 변수 재할당 O
  • const
const a = 'test1'
const a = 'test2' // 변수 재선언 X
a = 'test3'		  // 변수 재할당 X
// const는 변수 선언과 동시에 값을 할당해야한다