Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. myVar += 1
  2. console.log(myVar)
  3.  
  4. if (false) {
  5. var myVar = 3
  6. } else {
  7. //nothing here
  8. }
  9.  
  10. myOtherVar += 1
  11.  
  12. if (false) {
  13. let myOtherVar = 3
  14. } else {
  15. // nothing here
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement