You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: curriculum/challenges/english/25-front-end-development/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,24 +31,39 @@ You should log `"Hello! I'm your coding fun fact guide!"` to the console.
31
31
assert.equal(output[0], "Hello! I'm your coding fun fact guide!")
32
32
```
33
33
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.
35
35
36
36
```js
37
37
assert.exists(botName);
38
+
```
39
+
40
+
Your `botName` variable should be a string.
41
+
42
+
```js
38
43
assert.isString(botName);
39
44
```
40
45
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.
42
47
43
48
```js
44
49
assert.exists(botLocation);
50
+
```
51
+
52
+
Your `botLocation` variable should be a string.
53
+
54
+
```js
45
55
assert.isString(botLocation);
46
56
```
47
57
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.
49
59
50
60
```js
51
61
assert.exists(favoriteLanguage);
62
+
```
63
+
64
+
Your `favoriteLanguage` variable should be a string.
0 commit comments