Guest User

Untitled

a guest
Dec 15th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. function basla() {
  2. for(var i = 1; i<=5;i++){
  3. setTimeout(function(){
  4. console.log(i);
  5. },i*1000);
  6. }
  7. }
  8. basla(); //6 6 6 6 6
Add Comment
Please, Sign In to add comment