js中的Math.random()

random() 方法可返回介於 0 ~ 1 之間的一個隨機數。數組

這裏有幾種用法:dom

1.從數組中隨機獲取成員spa

var items = [12,a,9,p,8];
var randomItem = items[Math.floor(Math.random() * items.length)];字符串

2.生成從0到指定值的數字數組it

var numbersArray = [] , max = 100;
for( var i=1; numbersArray.push(i++) < max;); // numbers = [1,2,3 ... 100]io

3.生成隨機的字母數字字符串console

function radomcharnum(len){function

var str = "";隨機數

for(;str.length<len;str+=Math.random().toString(36).substr(2));方法

return str.substr(0,len);

}

3.獲得指定範圍的整數(須要Math.floor()或者parseInt()或者Math.ceil())

var randomNum = Math.random()*5;

console.log(parseInt(randomNum));//1

console.log(Math.floor(randomNum));//0

 

Math.floor(Math.random()*(max-min+1)+min);//max爲期待的最大的數,min爲最小的數     使用parseInt也是能夠的。

相關文章
相關標籤/搜索