Skip to content

Commit f6e9396

Browse files
Merge branch 'freeCodeCamp:main' into main
2 parents 850d10c + 77a95d0 commit f6e9396

2 files changed

Lines changed: 18 additions & 4 deletions

File tree

client/i18n/locales/english/intro.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2578,7 +2578,6 @@
25782578
"Open up this page to review concepts around the basics of CSS, responsive web design, animations, accessibility and more."
25792579
]
25802580
},
2581-
"wvjx": { "title": "127", "intro": [] },
25822581
"lecture-working-with-code-editors-and-ides": {
25832582
"title": "Working with Code Editors and IDEs",
25842583
"intro": [

curriculum/challenges/english/25-front-end-development/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,39 @@ You should log `"Hello! I'm your coding fun fact guide!"` to the console.
3131
assert.equal(output[0], "Hello! I'm your coding fun fact guide!")
3232
```
3333

34-
You should declare a `botName` variable and give it a value.
34+
You should declare a `botName` variable. Double check for any spelling or casing errors.
3535

3636
```js
3737
assert.exists(botName);
38+
```
39+
40+
Your `botName` variable should be a string.
41+
42+
```js
3843
assert.isString(botName);
3944
```
4045

41-
You should declare a `botLocation` variable and give it a value.
46+
You should declare a `botLocation` variable. Double check for any spelling or casing errors.
4247

4348
```js
4449
assert.exists(botLocation);
50+
```
51+
52+
Your `botLocation` variable should be a string.
53+
54+
```js
4555
assert.isString(botLocation);
4656
```
4757

48-
You should declare a `favoriteLanguage` variable and give it a value.
58+
You should declare a `favoriteLanguage` variable. Double check for any spelling or casing errors.
4959

5060
```js
5161
assert.exists(favoriteLanguage);
62+
```
63+
64+
Your `favoriteLanguage` variable should be a string.
65+
66+
```js
5267
assert.isString(favoriteLanguage);
5368
```
5469

0 commit comments

Comments
 (0)