Variables
Variables declared by
let
are only available inside the block where they’re defined.
Variables declared by
var
are available throughout the function in which they’re declared.
Variables declared by
const
should not be reassigned after their initial declaration.