function getRandomInt(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min)) + min; //不含最大值,含最小值 }
上面的例子是取[min, max)左閉右開區間的任意數字,假如取[0, 100)之間的隨機數,是取不到100的。Math.random() => 取[0, 1)之間的任意隨機數字。
怎么處理才能取到100呢?也就是怎么變成閉區間呢?
function getRandomInt(min, max) { min = Math.ceil(min); max = Math.floor(max); return Math.floor(Math.random() * (max - min + 1)) + min; //不含最大值,含最小值 }
以min = 0, max = 100,為例:
Math.random() * (100 - 0 + 1) => [0, 101)
Math.floor([0, 101)) => 0,1,2,...,100
Math.floor([0, 101)) + 0 => 0,1,2,...,100
