JavaScript Hoisting

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

Hoisting is a general way of thinking about how execution contexts (creation and execution phases) work in JavaScript.

Hoisting means that variables and function declarations are put into memory during the compile phase but stay where they were typed in the code. Classes are not hoisted.