在 JavaScript 中从数字列表中获取等于或大于的数字

javascriptweb developmentfront end technologyobject oriented programming

我们需要编写一个 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 ]

相关文章