variable declaration in javascript

var, let, const

Feb 21, 2024

keyword스코프재선언재할당호이스팅초기화 선언
varglobal or function scope (선언위치에 따라)재선언 o재할당 o호이스팅 됨. 초기화 undefined초기화하지 않은 상태에서 선언
letblock scope {}재선언 x재할당 o호이스팅 됨 초기화 x초기화하지 않은 상태에서 선언
constblock scope {}재선언 x재할당 x호이스팅 됨 초기화 x선언과 동시에 초기화 필요
Go toor?