精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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 函數始終返回介于 minmax(都包括)之間的隨機數:

范例

function getrndinteger(min, max) {
    return math.floor(math.random() * (max - min + 1) ) + min;
}

下一節:js 邏輯運算

js 教程

相關文章