Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
string-interpolation-vs-concatenation
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (iPhone; CPU iPhone OS 26_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Brave/1 Mobile/15E148 Safari/604.1
Browser:
Mobile Safari 26
Operating system:
iOS 26.3
Device Platform:
Mobile
Date tested:
2 months ago
Test name
Executions per second
string-interpolation
434378208.0 Ops/sec
string-concatenation
393167936.0 Ops/sec
Script Preparation code:
var luckyNumber = Math.round(Math.random() * 100);
Tests:
string-interpolation
`your lucky number for today is: ${luckyNumber}`
string-concatenation
'your lucky number for today is: ' + luckyNumber