fix(curriculum): Remove unnecessary comments (#41777)

* Remove unnecessary comments

https://github.com/freeCodeCamp/freeCodeCamp/pull/41612

* Remove unnecessary comment
This commit is contained in:
Emer Conghaile
2021-04-08 12:59:25 -05:00
committed by GitHub
parent 87b0e5bb7a
commit fe95d5bca2

View File

@ -66,7 +66,6 @@ assert(/=\s*myStorage\.car\.inside\[\s*("|')glove box\1\s*\]/g.test(code));
## --seed-contents--
```js
// Setup
var myStorage = {
"car": {
"inside": {
@ -79,7 +78,7 @@ var myStorage = {
}
};
var gloveBoxContents = undefined; // Change this line
var gloveBoxContents = undefined;
```
# --solutions--