Sogrey / Web-QA

https://sogrey.github.io/Web-QA/
MIT License
6 stars 2 forks source link

传递两个参数m,n,返回长度为m,所有元素都为n的数组,要求不能用循环 #299

Open Sogrey opened 4 years ago

Sogrey commented 4 years ago

利用函数的递归和 concat() 方法可以实现,代码如下:

function fn(m, n) {
  return m ? fn(m - 1, n).concat(n) : [];
}