两个整数之间的随机整数JavaScript
我们需要编写一个JavaScript函数,该函数接受一个正好两个数字的数组,并指定一个范围。
该函数应生成一个随机整数,该整数在作为参数指定的范围内(包括两端)。
示例
const range = [5, 15]; const randomBetween = ([min, max]) => { //+1以包括最大范围constrandom=Math.random()*(max-min+1); const whole = Math.floor(random) + min; return whole; }; for(let i = 0; i < 10; i++){ console.log(randomBetween(range)); }
输出结果
控制台中的输出将是-
13 10 6 10 12 5 14 13 11 6
该输出可能会在每次运行时更改。