码迷,mamicode.com
首页 > Web开发 > 详细

js 取一定范围内的整数

时间:2017-11-30 23:34:35      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:ret   div   dom   rand   turn   result   select   func   math   

1 function selectNum(lowNum,upNum) {
2     var num = upNum-lowNum+1;
3     // Math.floor() 向下取整
4     return Math.floor(Math.random()*num+lowNum);
5     
6 }
7 
8 var result = selectNum(2,8);  //2~8范围内的整数

 

js 取一定范围内的整数

标签:ret   div   dom   rand   turn   result   select   func   math   

原文地址:http://www.cnblogs.com/luweib/p/7932097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!