JavaScript 隨機
javascript 隨機
1. math.random()
math.random() 返回 0(包括) 至 1(不包括) 之間的隨機數:
范例
math.random(); // 返回隨機數
math.random() 總是返回小于 1 的數。
2. 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 之間的數
3. 一個適當的隨機函數
正如你從上面的例子看到的,創建一個隨機函數用于生成所有隨機整數是一個好主意。
這個 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; }