Created attachment 228995 [details] [TEST] Test Case Comparing the performance of: var combined = [...arr1, ...arr2]; var combined = arr1.concat(arr2); The concat is faster then the spread. They should be closer in performance considering they produce the same result. See attached test case.
Looks like the performance is now even better for the spread case for this test case. So this can probably be closed?
I don't see why not!