js-随机排序

一概要

Math.ceil(Math.random()*10);     // 获取从 1 到 10 的随机整数,取 0 的概率极小。

Math.round(Math.random());       // 可均衡获取 0 到 1 的随机整数。

Math.floor(Math.random()*10);    // 可均衡获取 0 到 9 的随机整数。

Math.round(Math.random()*10);    // 基本均衡获取 0 到 10 的随机整数,其中获取最小值 0 和最大值 10 的几率少一半。

二方法举例

2.1 方法1 



无标题文档





排序前:1234

排序后:4132

2.2 方法2



无标题文档




排序前:1234

排序后:4132

2.3 方法3



无标题文档





排序前:12345

排序后:4,3,1,2,5

你可能感兴趣的:(javaScript)