/**
* !What is Hoisting --------------->
* *Hoisting is a phenomena where we can access the variables and functions before initialization
*/
myFunc("Jassi"); // my name is Jassi
console.log(a); // undefined
var a = 5;
function myFunction(a) {
var b = `my name is ${a}`;
console.log(b);
}