Script Preparation code:
x
 
async function asyncFor(){
    for (const x of [1, 2, 3]) {
        await new Promise(resolve => setTimeout(resolve(x > 0), 100));
    }
}
async function asyncPromiseAll() {
    await Promise.all([1, 2, 3].map(x =>
        new Promise(resolve => setTimeout(resolve(x > 0), 100))
    ));
}
Tests:
  • asyncFor

     
    asyncFor()
  • asyncPromiseAll

     
    asyncPromiseAll()
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    asyncFor
    asyncPromiseAll

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36
Chrome 100 on Windows
View result in a separate tab
Test name Executions per second
asyncFor 361789.4 Ops/sec
asyncPromiseAll 125483.1 Ops/sec