What is a variable?

Asked by
?
Curious Learner
2d ago 0 views
1 answer
Best Answer
A named container that stores data in memory.

JavaScript example:
let age = 25;
const name = "Alice";

Variables can store:
- Numbers
- Strings (text)
- Booleans (true/false)
- Objects
- Arrays

Your Answer

Be specific and provide details to help the person asking.