JavaScript
let name="Ravi";
let age=15;What is variable? Real-life box analogy
A variable is a named place used to store data or a value in a program.
Think of a variable like a box with a label. The label is the variable name; the item inside is the value.
Do not create unclear variable names like x, a, data for beginner learning.
let name="Ravi";
let age=15;string name="Ravi";
int age=15;name="Ravi"
age=15<?php
$name="Ravi";
$age=15;
?>Variable = named box for storing data.