Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Hoisting

Hoisting is a term you will not find in the JavaScript docs. Hoisting was thought up as a general way of thinking about how execution context (specifically the creation and execution phases) work in JavaScript. But, hoisting can lead to misunderstandings. For example, hoisting teaches that variable and function declarations are physically moved to the top your coding, but this is not what happens at all. What does happen is the variable and function declarations are put into memory during the compile phase, but stays exactly where you typed it in your coding.  

Learn more

Technical example

One of the advantages you get from JavaScript putting function declarations into memory first, before it executes any coding, is this allows you to use a function before you declare it in your coding. For example:

function catName(name) {
  console.log("My cats name is " + name);
}

catName("Tigger");
/*
The results of the coding above is: "My cats name is Tigger"
*/

The above coding is how you would expect to write the coding for it to work. Now, lets see what happens when we call the function in our coding before we write it:

catName("Chloe");

function catName(name) {
  console.log("My cats name is " + name);
}
/*
The results of the coding above is: "My cats name is Chloe"
*/

Even though we call the function in our coding first, before the function is written, the coding still works. This is in thanks to how context execution works in JavaScript.

Technical reference

Document Tags and Contributors

 Contributors to this page: rajkishor09, SnoopyRules, kscarfone, fscholz
 Last updated by: rajkishor09,