Skip to content

Commit 65a4631

Browse files
Update 1-js/05-data-types/06-iterable/article.md
Co-authored-by: Ezequiel Castellanos <[email protected]>
1 parent a89b9c3 commit 65a4631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/06-iterable/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ for (let item of arrayLike) {}
193193
*/!*
194194
```
195195

196-
¿Qué tienen en común? Tanto los iterables como los array-like generalmente son *no matrices*, no tienen "push", "pop", etc. Eso genera inconvenientes si tenemos un objeto así y queremos trabajar con él como con una matriz.
196+
Tanto los iterables como los array-like generalmente no son *matrices*, no tienen "push", "pop", etc. Eso es bastante inconveniente si tenemos un objeto de este tipo y queremos trabajar con él como con una matriz. P.ej. nos gustaría trabajar con `range` utilizando métodos de matriz. ¿Cómo lograr eso?
197197

198198
## Array.from
199199

0 commit comments

Comments
 (0)