Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
nested function
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Browser:
Chrome 134
Operating system:
Linux
Device Platform:
Desktop
Date tested:
one year ago
Benchmark engine:
Benchmark.js
nested
18.1M/s
not nested
10.4M/s
View exact numbers
Test name
Executions per second
✓
nested
18,075,920 Ops/sec
not nested
10,356,456 Ops/sec
Tests:
not nested
a(1); function a(x) { return b(x + 1); } function b(x) { return c(x + 1); } function c(x) { return x + 1; }
nested
a(1); function a(x) { return b(x + 1); function b(x) { return c(x + 1); function c(x) { return x + 1; } } }