美文网首页
js使用随机来打乱数组排序的方法

js使用随机来打乱数组排序的方法

作者: 彬彬彬boboc | 来源:发表于2018-02-04 13:51 被阅读0次

    // 使用随机来打乱数组排序的方法

    let arr = [1,2,3,4,5,6,7];

    arr = arr.sort(function(x, y){

    return Math.random() - 0.5;

    });

    alert(arr);

    相关文章

      网友评论

          本文标题:js使用随机来打乱数组排序的方法

          本文链接:https://www.haomeiwen.com/subject/ycymzxtx.html