Gary Chu
Results
2
comments of
Gary Chu
```javascript // 隨機生成 Array function randomArray(length = 10, max = 100) { return Array.from({ length }, () => ~~(Math.random() * max)) } // 10位分組 function newArray(array) { return array .reduce((acc,...
@YouziXR 看起來是 [jsperf](https://jsperf.com/) 另外也推薦 [jsbench.github.io](http://jsbench.github.io/),都很好用。