fix(curriculum): update javascript challenge description (#48989)

Closes https://github.com/freeCodeCamp/freeCodeCamp/issues/48928
This commit is contained in:
mdnavarro21
2023-01-11 04:39:12 -05:00
committed by GitHub
parent fb5d20d828
commit 0126389f18

View File

@@ -26,13 +26,13 @@ Change the `0` so the difference is `12`.
# --hints--
The variable `difference` should be equal to 12.
The variable `difference` should be equal to `12`.
```js
assert(difference === 12);
```
You should only subtract one number from 45.
You should only subtract one number from `45`.
```js
assert(/difference=45-33;?/.test(__helpers.removeWhiteSpace(code)));