01. BASICS | Variables in JavaScript
var
Can be re-declared and updated within its scope.
var name = "Shubham";
// ✅ Below operations are possible
name = "Amit"; // only updating
var name = "Amit"; // re-declaration and updating
It
javascript-topicwise-notes.hashnode.dev2 min read