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

取10到100的随机数方法

时间:2016-11-29 06:43:23      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:排序   sort   范围   indexof   console   push   index   方法   []   

方法一:

var arr=[];
var arr2=[];
show();
function show(b){
for(var i=0;i<10;i++){
var tt=Math.floor(Math.random()*90+10);
arr[i]=tt;
if(arr2.indexOf(arr[i])<0){
arr2.push(arr[i]);
}
console.log(arr2.sort(paixu()));
}

}
function paixu(a,b){
return a-b; //升序排序
}

 

方法二:

var num1 = [];
for(var i = 0; i < 5; i++){
num1[i] = Math.floor(Math.random()*90 + 10); //范围是 [1, 10]
for(var j = 0; j < i; j++){
if(num1[i] == num1[j]){
i--; //去掉重复值
}
console.log(num1[i])
}
}

取10到100的随机数方法

标签:排序   sort   范围   indexof   console   push   index   方法   []   

原文地址:http://www.cnblogs.com/luoguixin/p/6111850.html

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