Three ways to define a variable In JavaScript there are three ways to define a variable. There's the old var and the new let and const. Var can be reassigned multiple times: var height = 180; height = 200; // 200 Var doesn’t throw an error if you re...
christianholm.dev3 min read
No responses yet.