码迷,mamicode.com
首页 > 其他好文 > 详细

for...in 与for ...of的区别

时间:2020-01-22 17:59:38      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:ddr   add   的区别   对象   log   name   round   ons   数组   

for ..in 用来遍历迭代对象的键

          即  如果 for. ..in 遍历的是数组,则输出的值 数组的下标

         例子 

    this.str = new Array();
    this.str.push(‘15‘);
    this.str.push(‘20‘);
    this.str.push(‘29‘);
    for (const i in  this.str) {
        console.log(i);    i为数组的下标值
    }
  如果 for...in 遍历的是对象,则输出的值 是对象个 键(key)
 
const personInfo = {
      name: ‘张三‘, age: 29, addr: ‘我在这里,等风,也等你‘
    };
 
 
    for (const ss in personInfo) {
       console.log(ss);  ss的值为 name 、age、addr
     }
 
for...of 用来遍历迭代数组的值
  this.str = new Array();
    this.str.push(‘15‘);
    this.str.push(‘20‘);
    this.str.push(‘29‘);
    for (const i of   this.str) {
        console.log(i);    i的值为‘15’,‘20’,‘29’
    }

for...in 与for ...of的区别

标签:ddr   add   的区别   对象   log   name   round   ons   数组   

原文地址:https://www.cnblogs.com/kukai/p/12228862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!