We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec21af8 commit 7d92be9Copy full SHA for 7d92be9
1-js/05-data-types/06-iterable/article.md
@@ -214,7 +214,7 @@ let arr = Array.from(arrayLike); // (*)
214
alert(arr.pop()); // World (method works)
215
```
216
217
-`Array.from` at the line `(*)` takes the object, examines it for being an iterable or array-like, then makes a new array and copies there all items.
+`Array.from` at the line `(*)` takes the object, examines it for being an iterable or array-like, then makes a new array and copies all items to it.
218
219
The same happens for an iterable:
220
0 commit comments