Test name | Executions per second |
---|---|
Array.prototype.concat | 651185.8 Ops/sec |
spread operator | 33262.1 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];