function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1) + min) } function shuffle(arr) { let _arr = arr.slice() // 创建一个源数组的副本 for (let i = 0; i < _arr.length; i++) { let j = getRandomInt(0, i) let t = _arr[i] _arr[i] = _arr[j] _arr[j] = t } return _arr }
shuffle([‘a‘,‘c‘,‘m‘,‘n‘,‘1‘]) // ["m", "c", "a", "n", "1"]
原文地址:https://www.cnblogs.com/ladybug7/p/12311127.html
时间: 2024-10-12 15:22:18