在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 ]