我们需要编写一个JavaScript函数,该函数接受一个数字作为第一个参数,例如n,并使用一个数字数组作为第二个参数。该函数应返回最小的n位数字,该数字是数组中指定的所有元素的倍数。
如果不存在这样的n位元素,则应返回最小的此类元素。
例如:如果数组是-
const arr = [12, 4, 5, 10, 9]
对于n = 2和n = 3,
输出结果
输出应为-
180
因此,让我们为该函数编写代码-
为此的代码将是-
const arr = [12, 4, 5, 10, 9] const num1 = 2; const num2 = 3; const allDivides = (arr, num) => arr.every(el => num % el === 0); const smallestMultiple = (arr, num) => { let smallestN = Math.pow(10, (num - 1)); while(!allDivides(arr, smallestN)){ smallestN++; }; return smallestN; }; console.log(smallestMultiple(arr, num1)); console.log(smallestMultiple(arr, num2));
输出结果
控制台中的输出将为-
180 180