ホームページ >ウェブフロントエンド >jsチュートリアル >ES6 での for...of の簡単な使用例
この記事では、ES6 での for...of の簡単な使用例を紹介します。必要な方は参考にしていただければ幸いです。
for...of は、Array、Map、Set、String、TypedArray、引数オブジェクトなどの反復可能なオブジェクトを反復する方法です。
構文
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
for(let s of new Set([1,2,3])){ console.log(s) } // 1 // 2 // 3
マップ
for(let s of new Map([[1,1],[2,2]])){ console.log(s) } // (2) [1, 1] // (2) [2, 2]
(function() { for (let argument of arguments) { console.log(argument); } })(1, 2, 3);
for(let p of document.getElementsByTagName('p')){ console.log(p) } // <p>...<p> // <p>...<p> // <p>...<p> // <p>...<p> ...
for...of は反復可能なオブジェクトのみを反復処理できます
#
以上がES6 での for...of の簡単な使用例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。