Test name | Executions per second |
---|---|
Splice | 21065442.0 Ops/sec |
Slice | 75621712.0 Ops/sec |
Concat | 25895366.0 Ops/sec |
Spread | 515957472.0 Ops/sec |
const testArray = [1, 2, 3];
const newTestArray = testArray.splice(0);
const testArray = [1, 2, 3];
const newTestArray = testArray.slice();
const testArray = [1, 2, 3];
const newTestArray = testArray.concat();
const testArray = [1, 2, 3];
const newTestArray = [testArray];