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

Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
This commit is contained in:
camperbot
2024-01-25 00:22:36 +05:30
committed by GitHub
parent cf1e5b8115
commit df4e5f7aca
26971 changed files with 288871 additions and 206689 deletions

View File

@@ -41,7 +41,7 @@ ourPets[1].names[0];
# --instructions--
Використовуючи точкову і дужкову нотацію, встановіть змінну `secondTree` на другий елемент в списку `trees` з об’єкта `myPlants`.
Використовуючи точкову і дужкову нотацію, встановіть змінну `secondTree` на другий елемент в списку `list` з другого об’єкту в масиві `myPlants`.
# --hints--

View File

@@ -74,25 +74,25 @@ assert(code.match(/testObj\.\w+/g).length > 1);
## --seed-contents--
```js
// Setup
// Налаштування
const testObj = {
"hat": "ballcap",
"shirt": "jersey",
"shoes": "cleats"
hat: "ballcap",
shirt: "jersey",
shoes: "cleats"
};
// Only change code below this line
const hatValue = testObj; // Change this line
const shirtValue = testObj; // Change this line
// Змініть код лише під цим рядком
const hatValue = testObj; // Змініть цей рядок
const shirtValue = testObj; // Змініть цей рядок
```
# --solutions--
```js
const testObj = {
"hat": "ballcap",
"shirt": "jersey",
"shoes": "cleats"
hat: "ballcap",
shirt: "jersey",
shoes: "cleats"
};
const hatValue = testObj.hat;