遍历的方法

1.for循环

优化:使用临时变量,将length缓存起来,避免重复获取length,在length较大时效果才比较明显.


var arr = [1, 2, 3, 4, 5, 6]   var len = arr.length

for(var i = 0; i < len; i++) { console.log(arr[i]) } // 1 2 3 4 5 6

2.forEach((item,index,arry)=>{ })

效率较for高,默认没有返回值

循环基本数据类型时,不会改变原数据;

循环复杂数据类型时,会改变原数据的对象属性值;


var arr = [1, 2, 3, 4, 5, 6]

arr.forEach((item, idnex, array) => {  console.log(item)    // 1 2 3 4 5 6 

console.log(array)    // [1, 2, 3, 4, 5, 6]  })

// 循环的数组元素是基本数据类型,不会改变原数据的数据

var arr1 = [1, 2, 3, 4, 5, 6]

arr1.forEach((item) => { item = 10  })   console.log(arr1) // [1, 2, 3, 4, 5, 6]

// 循环的数组元素为对象,会改变原数组的对象属性的值

var arr2 = [ { a:1, b:2 } , { a:11, b:12 } ]

arr2.forEach((item) => { item.a = 10 })

console.log(arr2) //  [{a: 10, b: 2}, {a: 10, b: 2}]

// 使用try...catch...可以跳出循环

try {

  let arr = [1, 2, 3, 4];

  arr.forEach((item) => { // 跳出条件

if (item === 3) { throw new Error("LoopTerminates") ; }  console.log(item) ; }); } 

catch (e) { if (e.message !== "LoopTerminates") throw e ; } ; // 1 2

3.for key in array/object

不可以遍历空数组,效率最低

遍历数组时,key为数组的下标;

遍历对象时,key为对象的属性名;


var arr = ['我', '是', '谁', '我', '在', '哪']

for(let key in arr) { console.log(key) } // 0 1 2 3 4 5

let obj = { a: 11, b: 22 , c: 33 }

for(let key in obj) { console.log(key) } // a b c

4.for key of array/string

性能较for .. in .. 好,较for差.

注意:不能遍历循环对象,因为任何数据只要部署interator接口,就可以完成遍历操作,有些数据结构原生具备interator接口,如array/map/set/string等,而interator接口是部署在Symbol.interator属性上的,而对象object没有Symbol.interator属性,所以无法遍历.

var arr = ['我', '是', '谁', '我', '在', '哪']

for(var key of arr) { console.log(key) } // 我 是 谁 我 在 哪


for..in 和for..of的区别

for..in只能获取对象的键名,不能获得键值; for..of允许遍历获得键值;

5.map() 映射

性能较forEach差,不会改变原数组

遍历每一个元素并返回处理后的值,返回数组长度与原数组长度一致

注意:不能使用break/continue跳出数组,会报错,可以使用try..catch跳出数组

var array = arr.map((item,index)=>{ return  })


// 一、会改变原数组

var arr = [1, 2, 3, 4, 5, 6]

var newArr = arr.map(function (item, idnex) { return item * item })

console.log(arr)      // [1, 2, 3, 4, 5, 6]    console.log(newArr)  // [1, 4, 9, 16, 25, 36]

// 二、会改变原数组元素中对象的属性值

var arr = [{a: 1, b: 2},{a: 11, b: 12}]

let newARR = arr.map((item)=>{ item.b = 111 ; return item })

console.log('arr数组',arr) // [{a: 1, b: 111},{a: 11, b: 111}]

console.log('newARR',newARR) // [{a: 1, b: 111},{a: 11, b: 111}]

// 三、不会改变原数组

var arr = [{a: 1, b: 2},{a: 11, b: 12}]

let newARR = arr.map((item)=>{ return { ...item , b:111 } })

console.log('arr数组',arr) // [{a: 1, b: 2},{a: 11, b: 12}]

console.log('newARR',newARR) // [{a: 1, b: 111},{a: 11, b: 111}]

// 四、使用try...catch...可以跳出循环

try { var arr = [1, 2, 3, 4];

arr.map((item) => { //跳出条件

if (item === 3) { throw new Error("LoopTerminates") ; }  console.log(item) ; return item });

} catch (e) { if (e.message !== "LoopTerminates") throw e ; } ; // 1 2

6.filter() 过滤

遍历数组,过滤筛选出符合条件的元素返回一个新的数组,没有符合条件时,返回空数组

var newarr = arr.filter((item,index)=>{ return 条件 })


var arr = [ { id: 1, name: '买笔', done: true } , { id: 2, name: '买笔记本', done: true },

{ id: 3, name: '练字', done: false } ]

var newArr = arr.filter(function (item, index) { return item.done }) console.log(newArr)

// [{ id: 1, name: '买笔', done: true },{ id: 2, name: '买笔记本', done: true }]

7.some((item,index,array)=>{}) 

遍历数组,只要有满足条件的元素就返回true,否则返回false;

检测到有一个满足条件就停止了,否则继续检测.


var arr = [ { id: 1, name: '买笔', done: true } , { id: 2, name: '买笔记本', done: true },

{ id: 3, name: '练字', done: false } ]

var bool = arr.some(function (item, index) { return item.done })

console.log(bool)    // true

8.every((item,index,array)=>{}) 

遍历数组,所有元素都满足条件返回true,否则返回false

注意:空数组调用every返回true


var arr = [ { id: 1, name: '买笔', done: true } , { id: 2, name: '买笔记本', done: true },

{ id: 3, name: '练字', done: false } ] 

var bool = arr.every(function (item, index) { return item.done }) console.log(bool)    // false

8.reduce(callback,[initialValue]) 实现数据的累加

arr.reduce(function(prev, cur, index, array){ // array:原数组 prev:上一次调用回调时的返回值,或者初始值  initcur:当前正在处理的数组元素index:当前正在处理的数组元素的索引  init:初始值}, init)

array.reduce( ( accumulator,currentValue,currentIndex,array )=>{

accumulator:累加器 每次迭代的结果

currentValue:当前数组中的元素 会遍历数组 得到数组中的值

currentIndex:当前元素在数组中的下标

array:数组对象本身

initialValue:可选参数,会影响accumulator的初始值,分两种情况:

如果没给initialValue,那么accumulator取自数组中的第一个元素,此时currentValue会取自数组中的第二个元素,开始迭代

如果给定了initialValue,那么initialValue会作为accumulator的初始值,此时currentValue会取自数组中的第一个元素,开始迭代

} [initialValue:初始值])


//求和varsum = arr.reduce(function (prev, cur) { return prev + cur; } , 0 ) ;

//取最大值varmax = arr.reduce(function (prev, cur) { return Math.max(prev,cur ) ; });

9.find() 指定元素查找

遍历数组,原数组不改变返回符合条件的第一个元素,没有符合条件的元素时返回undefined


var arr = [1, 1, 2, 2, 3, 3, 4, 5, 6]

var num = arr.find(function (item, index) { return item === 3 }) console.log(num)  //  3

10.findIndex()指定元素查找下标

遍历数组,不会改变原数组,返回符合条件的第一个元素的下标,没有符合条件的元素时返回-1


var arr = [1, 1, 2, 2, 3, 3, 4, 5, 6]

var num = arr.findIndex(function (item) { return item === 3 }) console.log(num)  //  4

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容