What is a Variable?

A variable is a named container used to store data in a program. The stored value can be a number, string, object, array, or any other data type.

Example:

let name = "John";

let age = 25;