在 JavaScript 中获取列表中大于或等于某个数字的数字
我们需要编写一个 JavaScript 函数,该函数将一个数字数组作为第一个参数,一个数字作为第二个参数。该函数应该返回一个数组,该数组包含输入数组中所有大于或等于第二个参数的数字。
示例
以下是代码:
const arr = [56, 34, 2, 7, 76, 4, 45, 3, 3, 34, 23, 2, 56, 5]; const threshold = 40; const findGreater = (arr, num) => { const res = []; for(let i = 0; i < arr.length; i++){ if(arr[i] < num){ continue; }; res.push(arr[i]); }; return res; }; console.log(findGreater(arr, threshold));
输出
这将在控制台中产生以下输出:
[ 56, 76, 45, 56 ]
广告