for in 和 for of 的區別

一、for...in 循環:只能得到對象的鍵名,不能得到鍵值javascript

      for...of 循環:容許遍歷得到鍵值java

  var arr = ['red', 'green', 'blue']
  
  for(let item in arr) {
    console.log('for in item', item)
  }
  /*
    for in item 0
    for in item 1
    for in item 2
  */

  for(let item of arr) {
    console.log('for of item', item)
  }
  /*
    for of item red
    for of item green
    for of item blue
  */

 

二、對於普通對象,沒有部署原生的 iterator 接口,直接使用 for...of 會報錯es6

 var obj = {
    'name': 'Jim Green',
    'age': 12
  }

  for(let key of obj) {
    console.log('for of obj', key)
  }
  // Uncaught TypeError: obj is not iterable

能夠使用 for...in 循環遍歷鍵名數組

 for(let key in obj) {
    console.log('for in key', key)
  }
  /*
    for in key name
    for in key age
  */

也能夠使用 Object.keys(obj) 方法將對象的鍵名生成一個數組,而後遍歷這個數組dom

 for(let key of Object.keys(obj)) {
    console.log('key', key)
  }
  /*
    key name
    key age
  */

 

三、for...in 循環不只遍歷數字鍵名,還會遍歷手動添加的其它鍵,甚至包括原型鏈上的鍵。for...of 則不會這樣spa

  let arr = [1, 2, 3]
  arr.set = 'world'  // 手動添加的鍵
  Array.prototype.name = 'hello'  // 原型鏈上的鍵

  for(let item in arr) {
    console.log('item', item)
  }

  /*
    item 0
    item 1
    item 2
    item set
    item name
  */

  for(let value of arr) {
    console.log('value', value)
  }

  /*
    value 1
    value 2
    value 3
  */

 

四、forEach 循環沒法中途跳出,break 命令或 return 命令都不能奏效prototype

  let arr = [1, 2, 3, 5, 9]
  arr.forEach(item => {
    if(item % 2 === 0) {
      return
    }
    console.log('item', item)
  })
  /*
    item 1
    item 3
    item 5
    item 9
  */

for...of 循環能夠與break、continue 和 return 配合使用,跳出循環code

 for(let item of arr) {
    if(item % 2 === 0) {
      break
    }
    console.log('item', item)
  }
  // item 1

 

五、不管是 for...in 仍是 for...of 都不能遍歷出 Symbol 類型的值,遍歷 Symbol 類型的值須要用 Object.getOwnPropertySymbols() 方法對象

{
  let a = Symbol('a')
  let b = Symbol('b')

  let obj = {
    [a]: 'hello',
    [b]: 'world',
    c: 'es6',
    d: 'dom'
  }

  for(let key in obj) {
    console.info(key + ' --> ' + obj[key])
  }

  /*
    c --> es6
    d --> dom
  */

  let objSymbols = Object.getOwnPropertySymbols(obj)
  console.info(objSymbols)    //  [Symbol(a), Symbol(b)]
  objSymbols.forEach(item => {
    console.info(item.toString() + ' --> ' + obj[item])
  })

  /*
    Symbol(a) --> hello
    Symbol(b) --> world
  */

  // Reflect.ownKeys 方法能夠返回全部類型的鍵名,包括常規鍵名和Symbol鍵名
  let keyArray = Reflect.ownKeys(obj)
  console.log(keyArray)      //  ["c", "d", Symbol(a), Symbol(b)]
}

 

總之,for...in 循環主要是爲了遍歷對象而生,不適用於遍歷數組blog

for...of 循環能夠用來遍歷數組、類數組對象,字符串、Set、Map 以及 Generator 對象

相關文章
相關標籤/搜索