6.JavaScript数组乱序排序
Posted lanshanxiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.JavaScript数组乱序排序相关的知识,希望对你有一定的参考价值。
1.对数组打乱顺序
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; arr.sort(function (a, b) { return Math.random() - 0.5; //使用随机数,大于0.5的往后排,小于0.5的往前排 }) console.log(arr); </script> </body> </html>
以上是关于6.JavaScript数组乱序排序的主要内容,如果未能解决你的问题,请参考以下文章