首頁 > web前端 > js教程 > 主體

ES6中for...of的簡單使用實例

不言
發布: 2018-11-14 16:32:28
原創
1923 人瀏覽過

這篇文章帶給大家的內容是關於ES6中for...of的簡單使用實例,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

概述

for...of是一個迭代可迭代物件的方式,可迭代物件包括Array、Map、Set、String、TypedArray、arguments 物件等等

語法

for(variable of iterable){
    // statement
}
登入後複製

迭代數組

for(let a of [1,2,3]){
    console.log(a)
} 
// 1
// 2
// 3
登入後複製

迭代字串

for(let s of 'hello'){
    console.log(s)
}
// h
// e
// l
// l
// o
登入後複製

迭代Set

for(let s of new Set([1,2,3])){
    console.log(s)
}
// 1
// 2
// 3
登入後複製

0x004 迭代Map

for(let s of new Map([[1,1],[2,2]])){
    console.log(s)
}
// (2) [1, 1]
// (2) [2, 2]
登入後複製

迭代arguments

(function() {
  for (let argument of arguments) {
    console.log(argument);
  }
})(1, 2, 3);
登入後複製

迭代Dom集合

for(let p of document.getElementsByTagName('p')){
    console.log(p)
}
// <p>...<p>
// <p>...<p>
// <p>...<p>
// <p>...<p>
...
登入後複製

總結

for...of只能迭代可迭代物件


以上是ES6中for...of的簡單使用實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板