Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. This week in Javscript fuckery:
  2.  
  3. const arr = [];
  4. for (let a = 0; a < 10; ++a) {
  5. arr.push(a);
  6. }
  7. console.log(arr);
  8.  
  9. What does this output?
Add Comment
Please, Sign In to add comment