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 25631960.0 Ops/sec
array parameter 29402314.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,2,3,4,5);
  • array parameter

     
    const els = h1([1,2,3,4,5]);