当前位置:   article > 正文

js生成0到9,0到10,1到10的随机数_js随机数生成1到10

js随机数生成1到10

1.使用内置函数方法:

   Math.random(); //该方法产生一个0到1之间的浮点数

   延伸:

   Math.floor(Math.random()*10+1); //生成1-10的随机数

   Math.floor(Math.random()*10);//生成0-9的随机数

   函数方法:

   function rand ( n )

   {

         return ( Math.floor ( Math.random ( ) * n + 1 ) );
   }

   如何调用:rand(100);生成1-100的随机数。

  综合应用:摘自司徒正美 http://www.cnblogs.com/rubylouvre/

      var native_random = Math.random; 

      Math.random = function(min, max, exact) { 

        if (arguments.length === 0) { 

          return native_random(); 

        } else if (arguments.length === 1) { 

          max = min; 

          min = 0; 

        } 

        var range = min + (native_random()*(max - min)); 

        return exact === void(0) ? Math.round(range) : range.toFixed(exact); 

      };

2.利用时间:

  var oNow        = new Date();
  var iNumber   = oNow.getSeconds();

  alert(iNumber );//产生一个基于当前时间的0到59的整数




不重复的


var stack = [0,1,2,3,4,5,6,7,8,9];
            
            while(stack.length) {
                console.log(stack.splice(parseInt(Math.random() * stack.length), 1)[0]);
            }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/106789
推荐阅读
相关标签
  

闽ICP备14008679号