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