Test name | Executions per second |
---|---|
Array.prototype.toSpliced | 7445254.0 Ops/sec |
Spread operator | 12354495.0 Ops/sec |
Array.prototype.slice + Array.prototype.push | 12673347.0 Ops/sec |
var array = ["hello", true, 7];
var newElement = "new";
const newArray = array.toSpliced(array.length, 0, newElement);
const newArray = [array, newElement];
const newArray = array.slice();
newArray.push(newElement);