🔰var hoisting
identifier hoisted to top of "function scope", value initialized to `undefined`❗️
JS ⟩ scope ⟩ hoisting ⟩ var hoisting
with a var declaration
identifier: hoisted to the top of its enclosing function scope. ( 👉 var has no block scope❗️❗)
Last updated