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

This commit is contained in:
camperbot
2023-09-12 07:54:53 -07:00
committed by GitHub
parent 19bf98bcc5
commit 90bdffca7b
1017 changed files with 34484 additions and 4994 deletions

View File

@@ -45,7 +45,7 @@ ourStorage.desk.drawer;
assert(gloveBoxContents === 'maps');
```
Your code should use dot notation, where possible, to access `myStorage`.
Код має використати точкову нотацію (там де можливо), щоб отримати доступ до `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.
Найпростіший спосіб додати дані до кінця масиву — використати метод `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.
Метод `push()` приймає один або декілька <dfn>аргументів</dfn> та приєднує їх до кінця масиву за тим порядком, в якому вони представлені. Він повертає нову довжину масиву.
Приклади:
@@ -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` має значення `[1, 2, 3, 4, 5]`, а `arr2` має значення `["Stimpson", "J", "cat", ["happy", "joy"]]`.
# --instructions--