Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
8FAD4EC8-45FE-4D39-A75A-9CC42D9F63D4
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 Edg/145.0.0.0
Browser:
Chrome 145
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
6 months ago
Benchmark engine:
Benchmark.js
interpolation
134.6M/s
String()
78.4M/s
.toString()
77.6M/s
JSON.stringify()
26.8M/s
View exact numbers
Test name
Executions per second
✓
interpolation
134,585,424 Ops/sec
String()
78,372,832 Ops/sec
.toString()
77,573,144 Ops/sec
JSON.stringify()
26,782,682 Ops/sec
Tests:
interpolation
const n = 123_456_7890; `${n}`;
.toString()
const n = 123_456_7890; n.toString();
String()
const n = 123_456_7890; String(n);
JSON.stringify()
const n = 123_456_7890; JSON.stringify(n);