JavaScript Variables

Variables are used to store data in JavaScript.

Example

let name = "Yusuf";
let age = 20;
  

Why Use Variables?