호이스팅이란?

host+ ing해서 끌어올리다는 개념으로서 모든 변수 선언문은 스코프 내에서 최상위로 호스팅 된다는 규칙이다. '자바스크립트 엔진이 식별자들을 최상단으로 끌어 올려놓은 다음 실제 코드를 실행한다' 라고 해석하면 될 것이다.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/51f957b8-867b-43ed-b0fd-48c865ab88f8/__.png

1.2 매개변수와 변수에 대한 호이스팅

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1fd1a397-de47-4785-89c4-03b537df435b/Untitled.png

결과는?? 이것을 정확히 안다면 호이스팅 공부안해도됨.

호이스팅을 마친 결과는??

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/69bce555-1a10-46e1-a75c-f8a4cd074cf1/Untitled.png

결과는 1,1,2 가 나오게 된다.

2. 함수 선언의 호이스팅

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/678fdc09-e285-4dc1-8385-cd5a4e6e7785/Untitled.png

출력결과는? 1,2,3, ?

2.1 함수 선언의 호이스팅 마친상태