Guest User

Untitled

a guest
Dec 14th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. ##循環與閉包
  2. for (let index = 0; index < 10; index++) {
  3. setTimeout(function() {
  4. console.log(index);
  5. }, 500);
  6. }
Add Comment
Please, Sign In to add comment