碎片時間學編程「286]:生成指定范圍內的隨機整數(shù)數(shù)組

生成指定范圍內的隨機整數(shù)數(shù)組。
使用Array.from()方法創(chuàng)建特定長度的空數(shù)組。
使用Math.random()方法生成隨機數(shù)并將它們映射到所需的范圍,用Math.floor()方法使它們成為整數(shù)。
JavaScript
const randomIntArrayInRange = (min, max, n = 1) => ?Array.from( ? ?{ length: n }, ? ?() => Math.floor(Math.random() * (max - min + 1)) + min ?);
示例:
randomIntArrayInRange(12, 35, 10); // [ 34, 14, 27, 17, 30, 27, 20, 26, 21, 14 ]
更多內容請訪問我的網站:https://www.icoderoad.com
標簽: