js遍历数组的几种方法
Posted 叩首问路 码梦人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js遍历数组的几种方法相关的知识,希望对你有一定的参考价值。
js遍历数组,基本就是for ,for in,foreach,for of, map等方法。
第一种:for
for(var i=0;arr.length;i++){ console.log(arr[i]) }
第二种:foreach循环
arr.forEach(function(item,index){ // item:元素 // index:下标 })
第三种:for in循环
便利的结果是key,数组下标
var a=[1,2,3]; for(let i in a){ console.log(i);//0 1 2 console.log(a[i]);//1 2 3 }
第四种:for of
遍历结果是value,数组值
var a=[1,2,3]; for(let i of a){ console.log(i);//1 2 3 }
第五种;map
map不改变原数组
arr.map((item,index)=>{ return item })
以上是关于js遍历数组的几种方法的主要内容,如果未能解决你的问题,请参考以下文章