Heading for the future

遍历数组的方法

遍历数组的方法:every,some,forEach,map,filter

首先我们来定义一个数组let arr = [1,2,3,4,5]

下面我们挨个来看一下这些方法

every:

  数组返回false则停止循环

  

some:

  数组返回true则停止循环

  

forEach:

  循环不能停止

  

map:

  返回一个经过处理的新数组,不会破坏原来的数组

  

filter:

  返回为筛选结果为true 的项组成的新数组

  

目前的话遍历数组有以上几个API,仅此记录一下

 

posted @ 2019-07-24 12:57  一只菜鸟攻城狮啊  阅读(1127)  评论(0编辑  收藏  举报