Script Preparation code:
AخA
 
function add(x, y) {
    return x + y
}
Tests:
  • bind

     
    var run = add.bind(null, Math.random(), Math.random())
    run()
  • anon

     
    var run = () => { add(Math.random(), Math.random())}
    run()
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    bind
    anon

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 months ago)
Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36
Chrome Mobile 131 on Android
View result in a separate tab
Test name Executions per second
bind 11351980.0 Ops/sec
anon 20432446.0 Ops/sec