window.ENTITIES={'/api/snippets/javascript/js%20for%20loop%20with%20settimeout()%20example':[{"result":true,"message":null,"batch":{"type":"javascript","name":"js for loop with settimeout() example","items":[{"id":"1ARnlD","type":"javascript","name":"js for loop with setTimeout() example","content":"// print values from 0 to 9 in the console every second:\n\nfor (let i = 0; i < 10; i++) {\n ((index) => setTimeout(() => console.log(index), i * 1000))(i);\n}\n\n\n// Warning: this solution schedules at once all iterations (it may be not effective for the big amount of the iterations).","source":"","author":{"id":"507kq0","name":"Gigadude","avatar":"1629030404503__507kq0__w40px_h40px.png","points":791,"role":"BASIC"},"creationTime":1642525634000,"updateTime":1642571124000,"removalTime":null},{"id":"pJqn7D","type":"javascript","name":"js for loop with setTimeout() example","content":"// print values from 0 to 9 in the console every second:\n\nfor (var i = 0; i < 10; i++) {\n (function(index) {\n setTimeout(function() {\n console.log(index);\n }, i * 1000);\n })(i);\n}\n\n\n// Warning: this solution schedules at once all iterations (it may be not effective for the big amount of the iterations).","source":"","author":{"id":"ZDxgq0","name":"Sujay","avatar":"1629142120943__ZDxgq0__w40px_h40px.jpg","points":512,"role":"BASIC"},"creationTime":1642525747000,"updateTime":1642571118000,"removalTime":null},{"id":"pYolk1","type":"javascript","name":"js for loop with settimeout() example","content":"const doLoop = (start, stop, step, delay, callback) => {\n let i = start;\n const doIteration = () => {\n if (i < stop) {\n callback(i);\n i += step;\n setTimeout(doIteration, delay);\n }\n };\n setTimeout(doIteration, delay);\n};\n\n\n// Usage example:\n\ndoLoop(0, 10, 1, 1000, (index) => console.log(index)); // prints values from 0 to 9 in the console every second\n\n// Where:\n// 0 - iteration start\n// 10 - iteration stop\n// 1 - iteration step\n// 1000 - delay between iterations (1s)","source":"","author":{"id":"20wl2D","name":"Brandy-Mccabe","avatar":"1629030393771__20wl2D__w40px_h40px.png","points":724,"role":"BASIC"},"creationTime":1642570911000,"updateTime":1642571008000,"removalTime":null}]}}]};