//for循环 const arr = [1,2,3,4,5] for(let i = 0; i < arr.length; i++){ if(arr[i] === 2){ //break //continue } } //forEach arr.forEach(function (item){ console.log(item) }) //for和forEach的区别 //forEach不能使用break和continue,只能从头到尾遍历 //every arr.every(function (item){ if(item === 2){ }else{ console.log(item) } return true//every能否继续遍历取决于return的返回值,默认false,只遍历一个 }) //for in //arr.a = 8 利用for in循环数组有缺陷 for(let index in arr){ if(index == 2){ continue } console.log(index,arr[index])//index是字符串类型,不是数字类型 }
相关文章
- 02-08【leetcode 简单】 第一百零八题 找到所有数组中消失的数字
- 02-08listview中OnItemClick方法各个参数的作用
- 02-08如何从C模板中的方法类型推导出类类型?
- 02-08sizeof和strlen在一维数组,二维数组中的应用
- 02-08c++实现数组、字符串中的元素序列全排列
- 02-08range方法在Python2和Python3中的不同
- 02-08c – 在GCC 4.1.1中优化文件中各个函数的方法是什么?
- 02-08js放到head中失效的原因与解决方法
- 02-08记录2019年中遇到的问题和解决的方法
- 02-08LeetCode--026--删除排序数组中的重复项