What is the JavaScript version of sleep()? What is the JavaScript version of sleep()? javascript javascript

What is the JavaScript version of sleep()?


2017 — 2021 update

Since 2009 when this question was asked, JavaScript has evolved significantly. All other answers are now obsolete or overly complicated. Here is the current best practice:

function sleep(ms) {  return new Promise(resolve => setTimeout(resolve, ms));}async function demo() {  console.log('Taking a break...');  await sleep(2000);  console.log('Two seconds later, showing sleep in a loop...');  // Sleep in loop  for (let i = 0; i < 5; i++) {    if (i === 3)      await sleep(2000);    console.log(i);  }}demo();