美文网首页
for in 和 for of的使用

for in 和 for of的使用

作者: 郭先生_515 | 来源:发表于2019-03-28 10:07 被阅读0次

for in的使用:

// in 数组
var arr=[1, 2, 4, 5];
for (var index in arr) {
  console.log(arr[index]);
  // 1
  // 2
  // 4
  // 5
}

// in json
var json = {"a": 1, "b": 2, "c": 7, "d": 4};
for(let key in json){
  console.log(key, json[key]);
  // a 1
  // b 2
  // c 7
  // d 4
}

for of 的使用:

// of 数组
var arr1=[4, 5, 6, 7];
for (let value of arr1) {
  console.log(value);
  // 4
  // 5
  // 6
  // 7
}

// of json 需使用内置的 Object.keys(json对象) 方法;
var json1 = {"a": 1, "b": 2, "c": 7, "d": 4};
for (let key of Object.keys(json1)) {
  console.log(key + ": " + json1[key]);
  // a: 1
  // b: 2
  // c: 7
  // d: 4
}

// of  数组对象
var json2 = [{"a": 1}, {"b": 2}, {"c": 7}, {"d": 4}];
for(let key of json2){
    // for(let val of Object.keys(key)){
    //  console.log('-------'+key[val]);
    // }
    for(let val in key){
        console.log('-------'+key[val]);
        // -------1
        // -------2
        // -------7
        // -------4
    }
    console.log(key); // key 是对象
    // { a: 1 }
    // { b: 2 }
    // { c: 7 }
    // { d: 4 }
}

相关文章

网友评论

      本文标题:for in 和 for of的使用

      本文链接:https://www.haomeiwen.com/subject/ywpfbqtx.html