赞
踩
我们先简单回顾一下知识点
filter()
方法创建一个新数组,其包含通过所提供函数实现的测试的所有元素。
并不会改变原数组
- const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
-
- const result = words.filter(word => word.length > 6);
-
- console.log(result);
- // expected output: Array ["exuberant", "destruction", "present"]
- console.log(words);
- // expected output: Array ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present']
forEach()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。