Test name | Executions per second |
---|---|
Concatenation | 335.1 Ops/sec |
Template strings | 387.1 Ops/sec |
var obj = {param1:"test",param2:"test",param3:"test",param4:"test"}
for (let i = 0; i < 10000; i++){
let s = "";
for (let j = 0; j < 4; j++){
s += obj[j] + " - ";
}
s = s.substring(0,s.length - 3);
}
for (let i = 0; i < 10000; i++){
let s = `${obj[0]} - ${obj[1]} - ${obj[2]} - ${obj[3]}`;
}