javascript的数组之filter()
Posted 环球学习机
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript的数组之filter()相关的知识,希望对你有一定的参考价值。
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()的主要内容,如果未能解决你的问题,请参考以下文章