Home > JavaScript Questions > What is hoisting in javascript?
In JavaScript before our code is executed, the variable and function declarations are put into memory during the compile phase. And this is known as hoisting.
outputName("Aman");
function outputName(name){
console.log("My name is " + name);
}
In the above code function is called before it is declared, but it still runs. This is because functions in javascript are hoisted and memory space has already been set aside for them. This allows us to use a function before we declare it in our code.
console.log(str);
var str = "string";
When we run the above code, the output is undefined and it doesn't give us error because of hoisting. Js engine has already set aside memory space for variable str
and set it to undefined which means undeclared. Javascipt only hoists declarations, not the initialisations. Therefore str is not equal to "string", until the line has executed in the execution phase.