mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-10 00:04:22 -05:00
chore(i18n,learn): processed translations (#51537)
This commit is contained in:
@@ -45,7 +45,7 @@ Accede al objeto `myStorage` y asigna el contenido de la propiedad `glove box` a
|
||||
assert(gloveBoxContents === 'maps');
|
||||
```
|
||||
|
||||
Your code should use dot notation, where possible, to access `myStorage`.
|
||||
Tu código debe utilizar la notación por puntos, siempre que sea posible, para acceder a `myStorage`.
|
||||
|
||||
```js
|
||||
assert.match(code, /myStorage\.car\.inside/);
|
||||
|
||||
@@ -9,9 +9,9 @@ dashedName: manipulate-arrays-with-push
|
||||
|
||||
# --description--
|
||||
|
||||
An easy way to append data to the end of an array is via the `push()` method.
|
||||
Una forma sencilla de añadir datos al final de un arreglo es mediante el método `push()`.
|
||||
|
||||
The `push()` method takes one or more <dfn>arguments</dfn> and appends them to the end of the array, in the order in which they appear. It returns the new length of the array.
|
||||
El método `push()` toma uno o más <dfn>arguments</dfn> y los añade al final del arreglo, en el orden en que aparecen. Devuelve la nueva longitud del arreglo.
|
||||
|
||||
Ejemplos:
|
||||
|
||||
@@ -23,7 +23,7 @@ const arr2 = ["Stimpson", "J", "cat"];
|
||||
arr2.push(["happy", "joy"]);
|
||||
```
|
||||
|
||||
`arr1` now has the value `[1, 2, 3, 4, 5]` and `arr2` has the value `["Stimpson", "J", "cat", ["happy", "joy"]]`.
|
||||
`arr1` ahora tiene el valor `[1, 2, 3, 4, 5]` y `arr2` tiene el valor `["Stimpson", "J", "cat", ["happy", "joy"]]`.
|
||||
|
||||
# --instructions--
|
||||
|
||||
|
||||
Reference in New Issue
Block a user