initial value
🚧 施工中
Last updated
Was this helpful?
🚧 施工中
Last updated
Was this helpful?
⟩ ⟩ initial value
variable declaration can assign a value to a variable.
const must be declared with an initial value
var hoisting - declaration hoisted, value initialized to "undefined".
let/const/class hoisting - declaration hoisted, value ""❗️
const requires initialization - must have with initial value❗️
function hoisting - declaration hoisted, value initialized to a function.
uninitialized variable has no initial values, not undefined even