语言JS 文档JS随机算法On this page随机算法 问题 实现一个数组洗牌函数 shuffle const shuffle = (list) => list.sort((x, y) => Math.random() - 0.5)#