for...of语句在可迭代对象(包括 Array,Map,Set,String,TypedArray,arguments 对象等等)上创建一个迭代循环,调用自定义迭代钩子,并为每个不同属性的值执行语
Posted xun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for...of语句在可迭代对象(包括 Array,Map,Set,String,TypedArray,arguments 对象等等)上创建一个迭代循环,调用自定义迭代钩子,并为每个不同属性的值执行语相关的知识,希望对你有一定的参考价值。
const array1 = [‘a‘, ‘b‘, ‘c‘];
for (const element of array1) {
console.log(element);
}
// expected output: "a"
// expected output: "b"
// expected output: "c"
语法
for (variable of iterable) { //statements }
variable
- 在每次迭代中,将不同属性的值分配给变量。
iterable
- 被迭代枚举其属性的对象。
參考https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Statements/for...of
以上是关于for...of语句在可迭代对象(包括 Array,Map,Set,String,TypedArray,arguments 对象等等)上创建一个迭代循环,调用自定义迭代钩子,并为每个不同属性的值执行语的主要内容,如果未能解决你的问题,请参考以下文章