About Closure ? In Javascript, one of the most important and theoretical topic is Closure. It is one of the most misunderstood topic. What is...
What is a Block? A Block is a compound statement which is used to group one or more statement. It groups the multiple lines and interprets as single...
Are let & const variable Hoisted ? The let & const keyword were introduced in ES6(2015). We all know that variable declared with var keyword can be...
What is SCOPE ? Scope - It determines the accessibility of variable, object, function from different part of the code. For the above code variable...
What is Hoisting ? Javascript Hoisting is a process where the interpreter appears to move the declaration of function, variable or classes to the top...
So basically, Call stack is a mechanism used in javascript to keep the track of multiple function call. Call Stack uses STACK which means Last In...