Skip to content

How to slow down a loop in JavaScript

New Course Coming Soon:

Get Really Good at Git

I had a loop where I wanted to call an API multiple times, e.g. 500 times.

APIs implement rate limiting and even if not, it’s just unkind to make those many requests in a very short time.

So I wanted to slow down the loop. How?

Turns out it’s pretty simple, once you set up a sleep() function, that you don’t need to change:

const sleep = (milliseconds) => {
  return new Promise(resolve => setTimeout(resolve, milliseconds))
}

Then you can call await sleep(1000) to stop 1 second in every iteration, like this:

const list = [1, 2, 3, 4]
const doSomething = async () => {
  for (const item of list) {
    await sleep(1000)
    console.log('🦄')    
  }
}

doSomething()
Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Get my JavaScript Beginner's Handbook
→ Read my JavaScript Tutorials on The Valley of Code
→ Read my TypeScript Tutorial on The Valley of Code

Here is how can I help you: