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

for in,Object.keys()与for of的区别

时间:2018-03-31 11:57:27      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:value   语法   object   efi   try   table   nod   function   获取   

for in

  • for in一般用于遍历对象的属性;
  • 作用于数组的for in除了会遍历数组元素外,还会遍历自定义可枚举的属性,以及原型链上可枚举的属性;
  • 作用于数组的for in的遍历结果是数组的索引,且都为字符串型,不能用于运算;
  • 某些情况下,可能按照随机顺序遍历数组元素;
技术分享图片
 1  Array.prototype.sayLength = function(){
 2    console.log(this.length);
 3    }
 4  let arr = [‘a‘,‘b‘,‘c‘,‘d‘];
 5  arr.name = ‘数组‘;
 6  Object.defineProperties(arr,{
 7        type:{
 8                 value:true,
 9                 writable:true,
10                 enumerable:true
11            }
12     });
13  for(let i in arr){
14      console.log(i);//0,1,2,3,name,type,sayLength
15   }
技术分享图片

 

 


 

Object.keys()

  • 遍历结果为由对象自身可枚举属性组成的数组,数组中的属性名排列顺序与使用for in循环遍历该对象时返回的顺序一致;
  • 与for in区别在于不能遍历出原型链上的属性;
技术分享图片
 Array.prototype.sayLength = function(){
            console.log(this.length);
        }
        let arr = [‘a‘,‘b‘,‘c‘,‘d‘];
        arr.name = ‘数组‘;
        Object.defineProperties(arr,{
            type:{
                value:true,
                writable:true,
                enumerable:true
            }
        });
 var keys = Object.keys(arr);
 console.log(keys);//["0", "1", "2", "3", "name", "type"]
技术分享图片

 

 


 

for of

  • ES6中添加的循环语法;
  • for of支持遍历数组、类对象(例如DOM NodeList对象)、字符串、Map对象、Set对象;
  • for of不支持遍历普通对象,可通过与Object.keys()搭配使用遍历;(见示例二)
  • for of遍历后的输出结果为数组元素的值;
  • 搭配实例方法entries(),同时输出数组内容和索引;(见示例三)

示例一:

技术分享图片
 1 Array.prototype.sayLength = function(){
 2  console.log(this.length);
 3}
 4  let arr = [‘a‘,‘b‘,‘c‘,‘d‘];
 5  arr.name = ‘数组‘;
 6  Object.defineProperties(arr,{
 7  type:{
 8        value:true,
 9        writable:true,
10        enumerable:true
11       }
12 });
13  for(let i of arr){
14      console.log(i);//a,b,c,d
15  }
技术分享图片

 示例二:

技术分享图片
var person={
    name:‘coco‘,
    age:22,
    locate:{
        country:‘China‘,
        city:‘beijing‘,
    }
}
for(var key of Object.keys(person)){
    //使用Object.keys()方法获取对象key的数组
    console.log(key+": "+person[key]);//name: coco,age: 22,locate: [object Object]
}
技术分享图片

示例三:

1 let arr3 = [‘a‘, ‘b‘, ‘c‘];
2         for (let [index, val] of arr3.entries()) {
3             console.log(index + ‘:‘ + val);//0:a 1:b 2:c
4         }

for in,Object.keys()与for of的区别

标签:value   语法   object   efi   try   table   nod   function   获取   

原文地址:https://www.cnblogs.com/bobonote/p/8681299.html

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