ES6 - 数组方法 filter()



filter() 方法创建一个新数组,其中包含通过提供的函数实现的测试的所有元素。

语法

array.filter(callback[, thisObject]); 

参数

  • callback − 用于测试每个元素的函数。

  • thisObject − 在执行回调时用作 this 的对象。

返回值

返回创建的数组。

示例

function isBigEnough(element, index, array) { 
   return (element >= 10); 
} 
var passed = [12, 5, 8, 130, 44].filter(isBigEnough); 
console.log("Test Value : " + passed );  

输出

Test Value :12,130,44 
广告