A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 绮罗 中级黑马   /  2020-4-2 15:40  /  1180 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 绮罗 于 2020-4-2 15:52 编辑

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  }

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马