#hoisting
Read more stories on Hashnode
Articles with this tag
Let's see an example first: var x ; x = 50; console.log(x); // Output: 50 Another Example : x = 50; console.log(x); var x ; // Output: 50 Why in...