码迷,mamicode.com
首页 > 其他好文 > 详细

随机整数函数

时间:2017-03-24 22:06:18      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:return   random   cti   max   math   choices   整数   turn   alert   

function randomNum(minNum,maxNum){
  var choices = maxNum - minNum + 1;
  return Math.floor(Math.random() * choices + minNum);
}

var num = randomNum(2, 10);
alert(num);   //2-10的随机数(包括2或10);

随机整数函数

标签:return   random   cti   max   math   choices   整数   turn   alert   

原文地址:http://www.cnblogs.com/rongy/p/6613436.html

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