龙空技术网

碎片时间学编程「286]:生成指定范围内的随机整数数组

路条编程 158

前言:

现时兄弟们对“jsint数组”大体比较讲究,兄弟们都需要学习一些“jsint数组”的相关资讯。那么小编同时在网上汇集了一些对于“jsint数组””的相关资讯,希望各位老铁们能喜欢,小伙伴们快快来了解一下吧!

生成指定范围内的随机整数数组。

使用Array.from()方法创建特定长度的空数组。使用Math.random()方法生成随机数并将它们映射到所需的范围,用Math.floor()方法使它们成为整数。

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 ]

更多内容请访问我的网站:

标签: #jsint数组