Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Function vs () =>
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
Browser:
Chrome 122
Operating system:
Windows
Device Platform:
Desktop
Date tested:
2 years ago
() =>
197.8M/s
Function
194.4M/s
View exact numbers
Test name
Executions per second
✓
() =>
197,768,096 Ops/sec
Function
194,414,448 Ops/sec
Tests:
Function
function use(a) { return a * 10; } use(10); use(20); use(30);
() =>
const use = (a) => a * 10; use(10); use(20); use(30);