Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Explore Differences Between the var and let Keywords
- One of the biggest problems with declaring variables with the var keyword is that you can easily overwrite variable declarations:
- var camper = "James";
- var camper = "David";
- console.log(camper);
- http://besturl.link/8S2T
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement