fix(curriculum): remove backticks around console (#63927)

This commit is contained in:
SamareshSingh
2025-11-17 18:53:49 -06:00
committed by GitHub
parent 30e76f9bc3
commit b9f47f8c9d
@@ -13,7 +13,7 @@ Use string concatenation to join the string `"My favorite subject is "` with the
Assign the result to the `favoriteSubjectSentence` variable.
Then, log the value of `favoriteSubjectSentence` to the `console`.
Then, log the value of `favoriteSubjectSentence` to the console.
# --hints--
@@ -41,7 +41,7 @@ You should have a `console` statement in your code.
assert.lengthOf(__helpers.removeJSComments(code).match(/console\.log(.*)/g), 8);
```
You should log the value of `favoriteSubjectSentence` to the `console`.
You should log the value of `favoriteSubjectSentence` to the console.
```js
assert.match(__helpers.removeJSComments(code), /console\.log\s*\(\s*favoriteSubjectSentence\s*\)/);