Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Intl.NumberFormat vs Intl.NumberFormat-memo
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0
Browser:
Firefox 139
Operating system:
Mac OS X 10.15
Device Platform:
Desktop
Date tested:
10 months ago
Test name
Executions per second
Intl.NumberFormat
1613303424.0 Ops/sec
Intl.NumberFormat-memo
1724725.0 Ops/sec
Tests:
Intl.NumberFormat
function format () { return new Intl.NumberFormat("en-US").format("10000"); }
Intl.NumberFormat-memo
var formatter = new Intl.NumberFormat("en-US") function format () { return formatter.format("10000"); }