本文介绍了编写一个函数“ giveMeRandom”。接受数字n并返回包含0到10之间的n个随机数的数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要编写一个函数 giveMeRandom,该函数接受数字n并返回包含n个介于0到10之间的n个随机数的数组。

I need to Write a function "giveMeRandom" which accepts a number n and returns an array containing n random numbers between 0 and 10

我无法推送生成n(arg)个长度的数组。
它只生成一个。

I can't push generate array of n (arg) length.It generates only one.

const giveMeRandom = function(n) {
    let arrWithNums = [];
    for(i = 0; i < n.length; i++) {
        return arrWithNums.push(Math.floor(Math.random() * 10)); 
    }
    return arrWithNums;
}
console.log(giveMeRandom(4));


推荐答案

const giveMeRandom = function(n) {
  let arrWithNums = [];
  for (i = 0; i < n; i++) {
   arrWithNums.push(Math.floor(Math.random() * 10));
  }
  return arrWithNums;
}
console.log(giveMeRandom(6));

这篇关于编写一个函数“ giveMeRandom”。接受数字n并返回包含0到10之间的n个随机数的数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 06:19