Appearance
数组洗牌
<T>(arr: T[])
T[]
import { arrayShuffle } from "poor-utils-pro"; arrayShuffle([1,2,3,4,5,6]) // [4,6,1,2,3,5] or [1,3,5,2,4,6] or ...