Akhil rathipellylets-do-this.hashnode.devยทJan 20, 2023Use let Instead Of var KeywordOne 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...91 readsES6Add a thoughtful commentNo comments yetBe the first to start the conversation.