Variables in JavaScript
Variable data store karta hai.
Types
var (old)
let (modern)
const (constant)
Example
let name = "Umair"; const age = 20;
Back