Script Preparation code:
x
 
var x = (new Array(100)).fill(0);
function f1() {
  return x.map(function(x) {
    return x + 1;
  });
}
function f2() {
  return x.map(g);
}
function g(x) {
  return x + 1;
}
Tests:
  • inline

     
    f1();
  • cached

     
    f2();
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    inline
    cached

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 8 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36
Chrome 53 on Mac OS X 10.11.5
View result in a separate tab
Test name Executions per second
inline 99760.0 Ops/sec
cached 98351.3 Ops/sec