Test name | Executions per second |
---|---|
string-interpolation | 283858720.0 Ops/sec |
string-concatenation | 269275232.0 Ops/sec |
var luckyNumber = Math.round(Math.random() * 100);
var string = "your lucky number for today is:";
`${string} ${luckyNumber}`
'your lucky number for today is: ' + luckyNumber