Hoisting in JS
Just look at the below code and observe if it will throw any errors.
console.log(greet);
// ???? -- Undefined
var greet = 'Hello! Everyone';
console.log(greet);
// Hello! Everyone
If you have been around programming languages other than JS then this...
mohdjasirkhan.tech3 min read