JavaScript中动态类型化数组中的最大数字

我们需要编写一个JavaScript函数,该函数接受一个包含一些数字,一些字符串和一些假值的数组。我们的函数应该从数组中返回最大的Number。

例如:如果输入数组是-

const arr = [23, 'hello', undefined, null, 21, 65, NaN, 1, undefined, 'hii'];

然后输出应为65。

因此,让我们为该函数编写代码-

示例

为此的代码将是-

const arr = [23, 'hello', undefined, null, 21, 65, NaN, 1, undefined, 'hii'];
const pickBiggest = arr => {
   let max = -Infinity;
   for(let i = 0; i < arr.length; i++){
      if(!+arr[i]){
         continue;
      };
      max = Math.max(max, +arr[i]);
   };
   return max;
};
console.log(pickBiggest(arr));

输出结果

控制台中的输出将为-

65