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
20.4M/s
bind
11.4M/s
View exact numbers
Test name
Executions per second
✓
anon
20,432,446 Ops/sec
bind
11,351,980 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()