Test name | Executions per second |
---|---|
Concat | 27.3 Ops/sec |
Find & Substring | 41.2 Ops/sec |
var string = "HelloWorld!".repeat(100) + " Hi";
for (let i = 0; i < 200; ++i) {
let result = '';
for (let j = 0; j < string.length; ++j) {
if (' ' === string[j]) {
break;
}
result += string[j];
}
}
for (let i = 0; i < 200; ++i) {
let j;
for (j = 0; j < string.length; ++j) {
if (' ' === string[j]) {
break;
}
}
let result = string.substring(0, j);
}