Javascript - ES6 - Notes
1. Differences Between the var and let Keywords
var camper = 'James';
var camper = 'David';
console.log(camper);
// logs 'David'
As you can see in the code above, the camper variable is originally declared as James and then overridden to be David. In...
kushalgupta.hashnode.dev6 min read