chore(i18n,learn): processed translations (#51762)

This commit is contained in:
camperbot
2023-10-02 10:33:36 -07:00
committed by GitHub
parent 2a6bc04b56
commit cd335b57cc
519 changed files with 1926 additions and 406 deletions

View File

@@ -45,7 +45,7 @@ Accedi all'oggetto `myStorage` e assegna il contenuto della proprietà `glove bo
assert(gloveBoxContents === 'maps');
```
Your code should use dot notation, where possible, to access `myStorage`.
Il tuo codice dovrebbe utilizzare la notazione con punto, quando possibile, per accedere a `myStorage`.
```js
assert.match(code, /myStorage\.car\.inside/);

View File

@@ -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.
Un modo semplice per aggiungere dei dati alla fine di un array è tramite il metodo `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.
Il metodo `push()` accetta uno o più <dfn>argomenti </dfn> e li aggiunge alla fine dell'array, nell'ordine in cui appaiono. Restituisce la nuova lunghezza dell'array.
Esempi:
@@ -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` ora ha il valore `[1, 2, 3, 4, 5]` e `arr2` ha il valore `["Stimpson", "J", "cat", ["happy", "joy"]]`.
# --instructions--