Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36
Chrome 96
Linux
Desktop
3 years ago
Test name Executions per second
plus operator 625728.4 Ops/sec
concat function 630954.7 Ops/sec
template literals 629805.5 Ops/sec
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`;