Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
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
Test name
Executions per second
bind
11351980.0 Ops/sec
anon
20432446.0 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()