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

求两个数之间的随机正整数

时间:2017-09-06 00:34:23      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:mint   长度   randomint   int   ret   随机   while   index   log   

求两个数之间的随机正整 数。并添到新数组,数组长度由自己指定。并且数组中不能有重复的值

function getRandomInt (min, max) {
  return Math.floor(Math.random() * (max - min + 1) + min)
}
function numInt(n, min, max) {
  const arr = []
  while(arr.length < n) {
  	let num = getRandomInt(min, max)
  	if (arr.indexOf(num) === -1) {
  		arr.push(num)
  	}
  }
  return arr
}
console.log(numInt(5, 4, 20))

  

求两个数之间的随机正整数

标签:mint   长度   randomint   int   ret   随机   while   index   log   

原文地址:http://www.cnblogs.com/peko/p/7482452.html

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