Test name | Executions per second |
---|---|
Array.prototype.concat | 170804064.0 Ops/sec |
spread operator | 169480032.0 Ops/sec |
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
var str1 = "Hello ";
var str2 = "world!";
var res = str1+str2;