Script Preparation code:
AخA
 
var luckyNumber = Math.round(Math.random() * 100);
Tests:
  • string-interpolation

     
    `SomeString:  your lucky number for today is: ${luckyNumber}`
  • string-concatenation

     
    'SomeString:' + 'your lucky number for today is: ' + luckyNumber
  • string-concatenation-with-interpolation

     
    'SomeString:' + `your lucky number for today is: ${luckyNumber}`
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    string-interpolation
    string-concatenation
    string-concatenation-with-interpolation

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0) Gecko/20100101 Firefox/125.0
Firefox 125 on Windows
View result in a separate tab
Test name Executions per second
string-interpolation 626090752.0 Ops/sec
string-concatenation 2455544320.0 Ops/sec
string-concatenation-with-interpolation 625136768.0 Ops/sec