您好,登錄后才能下訂單哦!
這篇文章主要介紹了JavaScript中的Math.random()怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
Math.random()
Math.random() 返回 0(包括) 至 1(不包括) 之間的隨機數:
實例
Math.random(); // 返回隨機數
Math.random() 總是返回小于 1 的數。
JavaScript 隨機整數
Math.random() 與 Math.floor() 一起使用用于返回隨機整數。
實例
Math.floor(Math.random() * 10); // 返回 0 至 9 之間的數
實例
Math.floor(Math.random() * 11); // 返回 0 至 10 之間的數
實例
Math.floor(Math.random() * 100); // 返回 0 至 99 之間的數
實例
Math.floor(Math.random() * 101); // 返回 0 至 100 之間的數
實例
Math.floor(Math.random() * 10) + 1; // 返回 1 至 10 之間的數
實例
Math.floor(Math.random() * 100) + 1; // 返回 1 至 100 之間的數
一個適當的隨機函數
正如你從上面的例子看到的,創(chuàng)建一個隨機函數用于生成所有隨機整數是一個好主意。
這個 JavaScript 函數始終返回介于 min(包括)和 max(不包括)之間的隨機數:
實例
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min) ) + min;
}
這個 JavaScript 函數始終返回介于 min 和 max(都包括)之間的隨機數:
實例
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}
感謝你能夠認真閱讀完這篇文章,希望小編分享的“JavaScript中的Math.random()怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。