Guest User

Untitled

a guest
Mar 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function() {
  2. for(var i = 0; i < 10; i++) {
  3. console.log(i);
  4. }
  5. console.log(i); // Logs 10
  6. }
  7.  
  8. for (let i = 0; i < 10; i++) {
  9. console.log(i);
  10. }
  11. console.log(i); // ReferenceError
Add Comment
Please, Sign In to add comment