JavaScript : Variables
Variables are names identifiers for values. We declare variables in javascript using var and let keywords. See both declarations below.
//var declaration
var name;
//let declaration
let age;
Differences between both declarations,
varletco...
subhamsahu.hashnode.dev1 min read