Script Preparation code:
x
 
async function asyncFor() {
    for (const x of [1, 2, 3]) {
        await new Promise(resolve => setTimeout(() => resolve(x > 0), 500));
    }
}
async function asyncPromiseAll() {
    await Promise.all([1, 2, 3].map(x =>
        new Promise(resolve => setTimeout(() => resolve(x > 0), 500))
    ));
}
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/102.0.0.0 Safari/537.36
Chrome 102 on Windows
View result in a separate tab
Test name Executions per second
asyncFor 193887.1 Ops/sec
asyncPromiseAll 67641.3 Ops/sec