A labeled box that stores a value so you can use it later. JavaScript gives you three ways to create one: var, let, and const.

js

var oldWay = "I still work but I'm outdated";

let score = 10;

score = 20; // โœ… totally fine, let allows this