Array.from vs Spread [...] from already existing array (to avoid deepCopy) (version: 1)
Speed test of Array.from against Spread ([...array]) syntax.
Not using Set because the test case wanted here is to have 2 arrays with the same elements (in e.g. to avoid mutating the original array).
Comparing performance of: Array.from vs Spread ([...array])