Script Preparation code:
AخA
 
var a = "some text";
var b = "other text";
Tests:
  • plus operator

     
    a + " aaa " + Math.random() + " bbb" + b + " 3210 " + Math.random() + " ccc";
  • concat function

     
    "".concat(a, " aaa ", Math.random(), " bbb ", b, " 3210 ", Math.random(), " ccc");
  • template literals

     
    `${a} aaa ${Math.random()} bbb ${b} 3210 ${Math.random()} ccc`;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    plus operator
    concat function
    template literals

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36
Chrome 96 on Linux
View result in a separate tab
Test name Executions per second
plus operator 625728.4 Ops/sec
concat function 630954.7 Ops/sec
template literals 629805.5 Ops/sec