filter

💜filter

定义

筛选、搜索、过滤,检查数组中符合条件的元素。返回新数组。

语法

array.filter(function(currentValue,index,arr), thisValue)
参数 描述
function(currentValue, index,arr) 必须。函数,数组中的每个元素都会执行这个函数
函数参数: 参数描述currentValue必须。当前元素的值index可选。当前元素的索引值arr可选。当前元素属于的数组对象
thisValue 可选。对象作为该执行回调时使用,传递给函数,用作 "this" 的值。 如果省略了 thisValue ,"this" 的值为 "undefined"

filter不会对空数组进行检测。

posted @ 2020-11-23 17:13  wattmelon  阅读(77)  评论(0编辑  收藏  举报