Test name | Executions per second |
---|---|
Array Push | 31254584.0 Ops/sec |
Test Splice | 14129529.0 Ops/sec |
var array = [];
for (var idx = 0; idx < 10; idx++) {
array[idx] = idx;
}
array.push(123);
var array = [];
for (var idx = 0; idx < 10; idx++) {
array[idx] = idx;
}
array.splice(10, 0, 123);