Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Last active January 19, 2019 17:29
Show Gist options
  • Save Kamilnaja/97bc547c6e7f8ea966c6d19806b28bdf to your computer and use it in GitHub Desktop.
Save Kamilnaja/97bc547c6e7f8ea966c6d19806b28bdf to your computer and use it in GitHub Desktop.
set timeout on for loop
/* The goal is to create function, that displays in console numbers from 0 to 9. After every number, we want little timeout.*/
// this only prints 10 ten times
for (let i = 0; i < 10; i++) {
setTimeout(() => {
console.log(i);
}, i * 1000)
}
//with arrow fn, also doesn't work
for (let i = 0; i < str.length; i++) {
setTimeout(() => console.log(str[i]), i * 100);
}
// typewriter in console
let str = "lorem mopsium dolor";
for (let i = 0; i < str.length; i++) {
(function(i){
setTimeout(() => {
console.log(str[i])
}, 100 * i);
})(i)
}
//setTimeout will run a function after some number of milliseconds, but only after the for loop has stopped executing;
//By the time the for loop has stopped executing, the value of i is 10.
//So each time the given function gets called, it will print out 10!
// the same with arrow fn
for (let i = 0; i < 10; i++) {
((i) => {
setTimeout(() => {
console.log(i);
}, i * 1000)
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment