🔰variable
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
JS ⟩ variable
a variable has a valueand an identifier as its name.
🈯 synonyms: "binding"
assignment to an undeclared identifier will result in an accidental global variable in sloppy mode❗️ in sloppy mode.
function hoisting - declaration hoisted, value initialized to a function.
the source of a value. (RHS reference)
temporal dead zone of a let/const variable.
compare:function hoisting
// ⭐️ states of an identifier/variable (in a specific scope)
// • undeclared identifier
// -> uninitialized variable (declared but undefined)
// -> initialized variable (with value !== undefined)