遍历数组
Posted strongerpian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历数组相关的知识,希望对你有一定的参考价值。
var arr = [3,5,,7,8,,,4] // 稀疏数组 // for循环遍历数组遇到空元素会输出undefined for (var i = 0; i < arr.length; i++) { console.log(i, arr[i]) } console.log(‘----------‘) // for...in在遍历数组的时候会自动跳过空元素 for (var index in arr) { // index是数组的索引,他是字符串类型,但是并不影响取数据 console.log(index, arr[index]) } console.log(‘-------‘) // 遍历数组的第三种方式:for...of // 直接取值,不取下标,稀疏数组中的undefined也会被遍历出来 for (var value of arr) { console.log(value) }
以上是关于遍历数组的主要内容,如果未能解决你的问题,请参考以下文章