WebGlossary.info
Hoisting
- A general way of thinking about how execution contexts (specifically the creation and execution phases) work in JavaScript. While conceptually, a strict definition of hoisting suggests that variable and function declarations are physically moved to the top of the code, the variable and function declarations are instead put into memory during the compile phase. Only declarations are hoisted, not initializations. ← MDN Web Docs
- Previous term: HOC
- Next term: HOL blocking
- Random term: Deep Web