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--
Verwende die Punkt- und Klammerschreibweise und setze die Variable `secondTree` auf den zweiten Eintrag in der `trees`-Liste des `myPlants` Objekts.
Using dot and bracket notation, set the variable `secondTree` to the second element in the `list` array from the second object in the `myPlants` array.
# --hints--

View File

@@ -76,9 +76,9 @@ assert(code.match(/testObj\.\w+/g).length > 1);
```js
// Setup
const testObj = {
"hat": "ballcap",
"shirt": "jersey",
"shoes": "cleats"
hat: "ballcap",
shirt: "jersey",
shoes: "cleats"
};
// Only change code below this line
@@ -90,9 +90,9 @@ const shirtValue = testObj; // Change this line
```js
const testObj = {
"hat": "ballcap",
"shirt": "jersey",
"shoes": "cleats"
hat: "ballcap",
shirt: "jersey",
shoes: "cleats"
};
const hatValue = testObj.hat;