Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
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
Test name
Executions per second
not nested
10356456.0 Ops/sec
nested
18075920.0 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; } } }