What is Execution context in JavaScript?
In this article, I'll try to explain to you what is execution context and how it is created with easy examples. It is a complete beginner tutorial.
Let's guess an output first
console.log(a)
b()
bb()
var a = 10;
function b() {
var c = 20;
con...
rupamdas.hashnode.dev5 min read