Advertisement
sissou123

Untitled

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