js 各种循环的区别与用法(for in,forEach,for of)
Posted 郭磊—lily
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 各种循环的区别与用法(for in,forEach,for of)相关的知识,希望对你有一定的参考价值。
1,forEach循环 不能跳过或者终止循环
const a = ["a","ss","cc"] a.dd="11" a.forEach(index =>{ // if (index ===‘ss‘) { // break; // } // 终止循环 如果终止循环会报错 console.log(index) }) // a ss cc
2,for in 循环 返回可枚举的属性
for(index in a){ console.log(a[index]) } //a ss cc 11 // 返回可枚举的属性
3,for of 循环 es6用法 可终止循环
for(let index of a){ if(index === ‘ss‘){ continue // break } console.log(index) }//a ss cc
以上是关于js 各种循环的区别与用法(for in,forEach,for of)的主要内容,如果未能解决你的问题,请参考以下文章