mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-01 10:01:04 -04:00
chore(i18n,learn): processed translations (#52333)
This commit is contained in:
@@ -81,13 +81,13 @@ Das Objekt `foods` sollte einen Schlüssel `strawberries` mit einem Wert von `27
|
||||
assert(foods.strawberries === 27);
|
||||
```
|
||||
|
||||
Die Schlüssel-Wert-Paare sollten mit Punkt- oder Klammernotation angegeben werden.
|
||||
The definition of the `foods` object should not be changed.
|
||||
|
||||
```js
|
||||
assert(
|
||||
code.search(/bananas:/) === -1 &&
|
||||
code.search(/grapes:/) === -1 &&
|
||||
code.search(/strawberries:/) === -1
|
||||
code.search(/let foods/) === -1 &&
|
||||
code.search(/const\s+foods\s*=\s*{\s*apples:\s*25,\s*oranges:\s*32,\s*plums:\s*28\s*};/
|
||||
) !== -1
|
||||
);
|
||||
```
|
||||
|
||||
@@ -96,7 +96,7 @@ assert(
|
||||
## --seed-contents--
|
||||
|
||||
```js
|
||||
let foods = {
|
||||
const foods = {
|
||||
apples: 25,
|
||||
oranges: 32,
|
||||
plums: 28
|
||||
@@ -112,7 +112,7 @@ console.log(foods);
|
||||
# --solutions--
|
||||
|
||||
```js
|
||||
let foods = {
|
||||
const foods = {
|
||||
apples: 25,
|
||||
oranges: 32,
|
||||
plums: 28
|
||||
|
||||
Reference in New Issue
Block a user