개발자/그냥 js

선언, 초기화, 할당 차이

YoungDogg 2022. 1. 12. 11:21

 

----이어지는 글----

var let const 차이점 그리고 호이스팅 (tistory.com)


선언 : 특정 이름으로 스코프에 알려준다.

 

초기화 : 메모리에  선언과 동시에 진행된다. 

 

할당 : 변수 안에 값 집어넣기

 

선언타입 : var, let, const (이들의 차이점)


참고 링크

Quick Tip: How to Declare Variables in JavaScript - SitePoint

 

Quick Tip: How to Declare Variables in JavaScript - SitePoint

Julian Motz examines how variables are declared in JavaScript, and introduces the three different types of declaration and their uses.

www.sitepoint.com