文件名称:js 使用 Math(算数) 对象来实现随机数的生成
文件大小:3KB
文件格式:TXT
更新时间:2022-12-06 14:48:49
js使用Math(算数)对
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 的几率少一半。