HLJ 发布于
2020-04-28 20:22:11

es6 for...in循环和for...of循环

1、for...in 循环,获取对象的键名

var array = ['a', 'b', 'c', 'd'];
for (let item in array) {
  console.log(item); // 0 1 2 3
}

2、for...of 循环,获取对象的键值

var array = ['a', 'b', 'c', 'd'];
for (let item of array) {
  console.log(item); // a b c d
}
当前文章内容为原创转载请注明出处:http://www.good1230.com/detail/2020-04-28/518.html
最后生成于 2023-06-27 21:37:19
此内容有帮助 ?
0