Use let Instead Of var Keyword
One of the biggest problems with declaring variables with the var the keyword is that you can easily overwrite variable declarations:
var camper = "James";
var camper = "David";
console.log(camper);
In the code above, the camper the variable is orig...
lets-do-this.hashnode.dev1 min read