dashboard
repositories
filestore
activity
search
login
zhba
/
zhba_app
智慧保安互联网APP
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
.
shuishen
2021-11-25
75218179fa1b50e9a700f4e1c167c1c4ccd8bdb4
[zhba/zhba_app.git]
/
uview-ui
/
libs
/
function
/
randomArray.js
1
2
3
4
5
6
7
// 打乱数组
function randomArray(array = []) {
// 原理是sort排序,Math.random()产生0<= x < 1之间的数,会导致x-0.05大于或者小于0
return array.sort(() => Math.random() - 0.5);
}
export default randomArray