fix(curriculum): update hint text for steps 6 and 7 of greeting bot workshop (#58689)

This commit is contained in:
Josue Igiraneza
2025-02-10 23:06:23 +02:00
committed by GitHub
parent f4f6df2b35
commit db55b0ba0f
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ Add another `console` statement to the code that logs the message `"Allow me to
# --hints--
You should have a `console` statement.
You should have a third `console.log()` statement in your code.
```js
assert.lengthOf(__helpers.removeJSComments(code).match(/console\.log(.*)/g), 3);

View File

@@ -48,7 +48,7 @@ You should use string concatenation with the `+` operator to join the string `"M
assert.equal(botIntroduction, "My name is teacherBot.");
```
You should have a `console` statement in your code.
You should have a fourth `console.log()` statement in your code.
```js
assert.lengthOf(__helpers.removeJSComments(code).match(/console\.log(.*)/g), 4);