Test name | Executions per second |
---|---|
straight | 403794.0 Ops/sec |
async | 388636.4 Ops/sec |
function test(id){
let time = Date.now() + id;
return new Promise(resole=>setTimeout(0,time))
}
(()=>test(1))().then(console.log)
(async()=>test(1))().then(console.log)