# Hoisting JavaScript Hoisting refers to the process whereby the interpreter appears to move the declaration of functions, variables, or classes to the top of their scope, prior to execution of the code. Visit the following resources to learn more: - [What is Hoisting - MDN Docs](https://developer.mozilla.org/en-US/docs/Glossary/Hoisting) - [JavaScript Hoisting](https://www.geeksforgeeks.org/javascript-hoisting/) - [Understanding hoisting ](https://www.digitalocean.com/community/tutorials/understanding-hoisting-in-javascript) - [Learn JavaScript Hoisting In 5 Minutes](https://www.youtube.com/watch?v=EvfRXyKa_GI)