Skip to main content

JavaScript type hoisting with variable function Expression

JavaScript type hoisting with variable function Expression

Hoisting is JavaScript default behavior to moving declaration on the top. Variable can be used before its declaration. To understand this, first we need to understand of hoist meaning, hoist means “raise(something) by means of ropes & pulleys”. now we can relate hoisting with JavaScript. JavaScript interpreter moves all declaration on the top at runtime.
It is best practice to declare all variable at the top of their respective scopes. , JavaScript is loosely syntax language so it will not throw any error at runtime if the variable used before its declaration.
But JavaScript does not allow variable used before its declaration in “use strict” mode.
Example 1
In this example, we can see in a normal scenario, when y has declared & then used. in this case, it will give output 10 as excepted.
<p id="demo"></p>
<script>
var y;                                  //Declare y 
y = 10;                                  //Assign 10 to y
document.getElementById("demo").innerHTML = y;  //y used here after its declaration
</script>
Example 2
In this example, we can see JavaScript hoisting behavior use y before its declaration. & output would be 10.
Here’s what is happening behind the scenes: declaration getting hoisted at the top
<p id="demo"></p>
<script>
y = 10;                                  //Assign 10 to y
document.getElementById("demo").innerHTML = y;  //y used here before its declaration
var y;                                  //Declare y 
</script>



JavaScript only hoists declarations. Initialization does not hoist.
Example 3
var a;
console.log(a); // undefined 
a = 3;

We expected 3 in output but instead, undefined is logged. Why is this? It’s because JavaScript only hoists declarations. Initialization does not hoist (JavaScript interpreter looks ahead and “hoists” all variable declarations to the top, and the initialization remains in the same spot).

Function Hoisting

a certain type of function declaration follows the same behavior as the variable does. but some functions do weird behavior. we can explore below examples
Example 1
hoistFun();    //function hoist too
function hoistFun(){
console.log("function hoisting") // out put "function hoisting"
}

In the above example, the JavaScript interpreter hoisted hoistFun function on the top as other variable declaration.
Example 2
// TypeError: hoistFun is not a function
 hoistFun();
var hoistFun= function (){
console.log("function hoisting") 
}

In the above example function will not hoist if it is part of function expression, why is this, because you can not use function expression before you define them.
Now, let's take same hoistFun function expression define first, then called a hoistFun function. it will not throw any error.
Example 3
var hoistFun= function (){
console.log("function hoisting") // out put: function hoisting
}
 hoistFun();   
Example 4
In this example created a name variable as a global variable, & created the same variable as a local variable for
myFunc function.
var name = "jhon";
function myFunc () {
    // Outputs: My name is undefined
    console.log("My name is " + name);
​
    var name = "smith";    
​
    // Outputs: My name is smith
    console.log("My name is " + name);
}  
myFunc ();

In this case, we expected the value of name from the outer scope, but same name variable(local variable for function ) declared & initialized inside function after the logged value of name but due to initialization does not hoist so the name is undefined.

Comments

Post a Comment

Popular

JavaScript Closure

What is closure? It is my personal experience, I have never understood closure, I have read many articles & have seen many videos. Finally, I understood sometimes we even used a closure without realizing we were using a closure. First, understand the meaning of closure “an act or process of closing something”, now we can relate closure in javascript, closure is an inner function which wraps inside the outer function, which can access outer function scope & global function scope. for scoping you can read my previous blog:- http://uisource.blogspot.com/2018/08/javascript-variable-scoping.html why do we create? Global variables can be made local (private) with closures. To avoid the usage of global variables, use the local variables and wrap your code in the closure. A closure is an inner function that has access to the outer (enclosing) function’s variables—scope chain(Lexical scoping). The closure has three scope chains: it has access to its own scope (variables define...

JavaScript Variable Scoping

There are two types of variables in JavaScript.  Global variables have global access and are declared outside of any function. Local variables are those declared inside of function. Lexical Scoping(Nested JavaScript Function) means that in a nested group of functions, the inner functions have access to the variables and other resources of their parent scope. Global variable:- Global variable declares & initialize outside the function, & accessible in from anywhere in the code. The global variable always stored in memory even function execution finish, it always keeps in memory or always accessible from anywhere in the code. Example 1 var message= "hello i am global variable" ; //global variable function a (){ console.log(message); // output: hello i am global variable } function b (){ console.log(message); // output: hello i am global variable } function a() function b() In above example message is a global variab...