Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 248 Bytes

let-and-var.md

File metadata and controls

12 lines (8 loc) · 248 Bytes

let and var

  1. let has block scope while var doesnt
const card = 42;
...
card = 45; //TypeError: Assignment to constant variable.
  1. let helps you catch errors earlier. Doesnt allow one to use undefined variables