You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/05-data-types/06-iterable/article.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -142,15 +142,17 @@ for (let char of str) {
142
142
143
143
For deeper understanding let's see how to use an iterator explicitly.
144
144
145
-
We'll iterate over a string in exactlly the same way as `for..of`, but with direct calls. This code creates a string iterator and gets values from it "manually":
145
+
We'll iterate over a string in exactly the same way as `for..of`, but with direct calls. This code creates a string iterator and gets values from it "manually":
0 commit comments