Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36
Chrome 111
Windows
Desktop
2 years ago
Test name Executions per second
rest arguments 29817354.0 Ops/sec
array parameter 28900590.0 Ops/sec
Script Preparation code:
x
 
function h1(...args) {
    return args.map((x)=>x)
}
function h2(args) {
    return args.map((x)=>x)
}
Tests:
  • rest arguments

     
    const els = h1(1);
  • array parameter

     
    const els = h1([1]);