手揣网教程:绿色安全纯净官方版,体验当今速度最快的浏览器!

ES6中for...of的容易使用案例

时间:2024/11/26作者:未知来源:手揣网教程人气:

[摘要]本篇文章给大家带来的内容是关于ES6中for...of的简单使用实例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。概述for...of是一个迭代可迭代对象的方式,可迭代对象包括Ar...
本篇文章给大家带来的内容是关于ES6中for...of的简单使用实例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

概述

for...of是一个迭代可迭代对象的方式,可迭代对象包括Array、Map、Set、String、TypedArray、arguments 对象等等

语法

for(variable of iterable){
    // statement
}

迭代数组

for(let a of [1,2,3]){
    console.log(a)
} 
// 1
// 2
// 3

迭代字符串

for(let s of 'hello'){
    console.log(s)
}
// h
// e
// l
// l
// o

迭代Set

for(let s of new Set([1,2,3])){
    console.log(s)
}
// 1
// 2
// 3

0x004 迭代Map

for(let s of new Map([[1,1],[2,2]])){
    console.log(s)
}
// (2) [1, 1]
// (2) [2, 2]

迭代arguments

(function() {
  for (let argument of arguments) {
    console.log(argument);
  }
})(1, 2, 3);

迭代Dom集合

for(let p of document.getElementsByTagName('p')){
    console.log(p)
}
// <p>...<p>
// <p>...<p>
// <p>...<p>
// <p>...<p>
...

总结

for...of只能迭代可迭代对象

以上就是ES6中for...of的简单使用实例的详细内容,更多请关注php中文网其它相关文章!


网站建设是一个广义的术语,涵盖了许多不同的技能和学科中所使用的生产和维护的网站。



关键词:ES6中for...of的容易运用案例




Copyright © 2012-2018 手揣网教程(http://www.shouchuai.com) .All Rights Reserved 网站地图 友情链接

免责声明:本站资源均来自互联网收集 如有侵犯到您利益的地方请及时联系管理删除,敬请见谅!

QQ:1006262270   邮箱:kfyvi376850063@126.com   手机版