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/05-array-methods/article.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Métodos con arrays
2
2
3
-
Los arrays (arreglos) cuentan con muchos métodos. Para hacer las cosas más sencillas, en este capítulo se encuentran divididos en dos partes.
3
+
Los arrays (arreglos / matríces) cuentan con muchos métodos. Para hacer las cosas más sencillas, en este capítulo se encuentran divididos en dos partes.
4
4
5
5
## Agregar/remover elementos
6
6
@@ -54,7 +54,7 @@ Empecemos removiendo elementos:
54
54
let arr = ["Yo", "estudio", "JavaScript"];
55
55
56
56
*!*
57
-
arr.splice(1, 1); // desde el index 1 remover 1 elemento
57
+
arr.splice(1, 1); // desde el índice 1 remover 1 elemento
0 commit comments