Test name | Executions per second |
---|---|
Array.prototype.concat | 746210.4 Ops/sec |
spread operator | 34165.3 Ops/sec |
var array1 = Array(400).fill().map(() => Math.round(Math.random() * 40));
var array2 = Array(400).fill().map(() => Math.round(Math.random() * 40));
var others = array1.concat(array2);
var others = [array1, array2];