JavaScript Hoisting
JavaScript hoisting refers to the interpreter moving the declarations of variables, functions, and classes to the top of their scope before execution.
- 7/9/2022
- 1 min read
Hi, I'm Danilo! Welcome to my personal space in the internet, where I write my learning and thoughts about all things web development.
JavaScript hoisting refers to the interpreter moving the declarations of variables, functions, and classes to the top of their scope before execution.
Learn how prototypal inheritance works in JavaScript.