Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
for...ofループが ECMAScript-6 の提案に追加されたことに気付きましたが、今まで聞いたことがありませんでした。それらの典型的なユースケースは何ですか?
使用例は、配列の各要素で何かをしたい場合です。 for...inECMAScript では、配列のインデックスを調べることができます(さらには間違っています)。
for...in
ES6 に相当する Pythonfor...ofはfor...in、次のようになります。
for...of
myList = [ "a", "b", 5] for el in myList: # el takes on the values "a", "b", 5 in that order pass