Hoisting In JavaScript
What is Hoisting ?
Hoisting is Term We use for the Execution of something before it's declaration in coding
Mean's If We Execute a function before it's declaration is called Hoisting.
host("shivam");
function host (test) {
console.log( ` my nam...
risehoneix.hashnode.dev1 min read