Script Preparation code:
x
 
async function basicAsync() {
  const fetch1 = await fetch(www.google.com);
  const fetch2 = await fetch(www.google.it);
  const fetch3 = await fetch(www.google.de);
};
async function promiseAllAsync() {
  const [fetch1, fetch2, fetch3] = await Promise.all([
    fetch(www.google.com),
    fetch(www.google.it),
    fetch(www.google.de)
  ]);
};
Tests:
  • Basic await

     
    basicAsync()
  • PromiseAll await

     
    promiseAllAsync()
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Basic await
    PromiseAll await

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Chrome 114 on Windows
View result in a separate tab
Test name Executions per second
Basic await 87394.5 Ops/sec
PromiseAll await 135734.5 Ops/sec