JavaScript and Hoisting
What is Hoisting in JavaScript?
How about understanding it via example?
var name = "John Doe"
console.log(name)
As you already know this will print John Doe on your console. Nothing weird is going on here.
How about the following code?
name = "John ...
jaspalscodes.hashnode.dev3 min read