JavaScript and Hoisting
Let's start this post with a question.
What will be the output of this code block?
standardFunc();
function standardFunc() {
console.log("Am I accessible before defining?");
}
If you don't know the answer, I suggest running the code block.
So, what...
anuragsahu.hashnode.dev4 min read