Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36
Chrome 100
Windows
Desktop
3 years ago
Test name Executions per second
Template string 9587838.0 Ops/sec
String.concat 7694109.5 Ops/sec
Script Preparation code:
x
 
const base = '1-2'
const separator = '-';
const suffix = 3;
function templateString() {
  return `${base}${separator}${suffix}`;
}
function stringConcat() {
  return base.concat(separator, suffix);
}
Tests:
  • Template string

     
    templateString()
  • String.concat

     
    stringConcat()