了解一些随机数方法

Math.random();

  1. Math.random() 返回大于0 小于1的 随机数字.

  2. Math.random() * 10 返回大于0 小于10的 随机数字.

  3. Math.round(Math.random() * 10) 四舍五入下 就会得到 大于等于0 小于等于10的整数

  4. Math.floor 求一个最接近它的整数,它的值小于或等于这个浮点数

  5. Math.floor(Math.random() * 10) floor下 得到 大于等于0 小于等于9的 整数

ps: Math.round(x) == Math.floor(x+0.5) 这俩个算法相同

你可能感兴趣的:(了解一些随机数方法)