Test name | Executions per second |
---|---|
array concat | 4304.5 Ops/sec |
array push | 8859.6 Ops/sec |
concat | 21466.9 Ops/sec |
let text = [];
for (i = 10000; i > 0; i--) {
text[i] = "some text";
}
const val = text.join(" ");
var text = [];
for (i = 10000; i > 0; i--) {
text.push('some text');
}
var val = text.join(" ");
var text = '';
for (i = 10000; i > 0; i--) {
text += ` some text`;
}