码迷,mamicode.com
首页 > 编程语言 > 详细

javascript的数组之filter()

时间:2018-06-08 22:10:20      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:参数   his   回调函数   ant   bsp   一个   包含   word   ons   

filter()方法创建一个新数组,其包含通过回调函数测试的所有元素。

const words = [‘spray‘, ‘limit‘, ‘elite‘, ‘exuberant‘, ‘destruction‘, ‘present‘];

const result = words.filter(word => word.length > 6); // ["exuberant", "destruction", "present"]

 

参数:

第一个:回调函数callback(ele, index, array),返回true保留该元素,否则flase丢掉

第二个:回调函数的this对象

javascript的数组之filter()

标签:参数   his   回调函数   ant   bsp   一个   包含   word   ons   

原文地址:https://www.cnblogs.com/huanqiuxuexiji/p/9157550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!