JavaScript - Variable declaration

1 comment

So I spent the day learning a little bit. I'll attempt some simple games this week.

# These are the variable functions w/ description 

var: Function or globally scoped, can be redeclared.
let: Block-scoped, cannot be redeclared in the same scope.
const: Block-scoped, cannot be redeclared or reassigned.

Comments

Sort byBest