const
Last updated
Was this helpful?
Last updated
Was this helpful?
⟩ ⟩ const
⟩ ⟩ ⟩ const
(declaration) declares a local constant in block scope.
const
must have an initial value ( )
can't be reassigned ( )
can't be
ReferenceError: .
caused by referencing a let/ const/ class in its temporal dead zone
using typeof on lexical declaration (let/ const/ class) in its temporal dead zone will throw a .
replit:
is a reserved word
can't be .
⟩ ⟩