Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
bind vs anon
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36
Browser:
Chrome Mobile 131
Operating system:
Android
Device Platform:
Mobile
Date tested:
one year ago
Benchmark engine:
Benchmark.js
anon
19.2M/s
bind
10.6M/s
View exact numbers
Test name
Executions per second
✓
anon
19,152,820 Ops/sec
bind
10,560,311 Ops/sec
Script Preparation code:
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()