Variables Explained with Real Examples
How let, const, and var store information in your programs.
Variables are labeled boxes for data. Use let when a value may change, and const when it should stay fixed.
const siteName = "JS for Kids";
let score = 0;
score = score + 10;Good variable names describe what they hold: playerName, level, isLoggedIn.