Script Preparation code:
x
 
async function asyncFor(){
    for (const x of [1, 2, 3]) {
        await new Promise(resolve => resolve(x > 0));
    }
}
async function asyncPromiseAll() {
    await Promise.all([1, 2, 3].map(x =>
        new Promise(resolve => resolve(x > 0))
    ));
}
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: 24 days ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
asyncFor 6836718.5 Ops/sec
asyncPromiseAll 2338922.2 Ops/sec