This content was deleted by the author. You can see it from Blockchain History logs.

JavaScript - Variable declaration

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.