Remove unnecessary comments (#41775)

https://github.com/freeCodeCamp/freeCodeCamp/pull/41612
This commit is contained in:
Emer Conghaile
2021-04-08 11:40:34 -05:00
committed by GitHub
parent a9a68fa498
commit 591a534701

View File

@ -58,10 +58,8 @@ if(typeof myArray !== "undefined"){(function(){return "myData: " + myData + " my
## --seed-contents--
```js
// Setup
var myArray = [[1,2,3], [4,5,6], [7,8,9], [[10,11,12], 13, 14]];
// Only change code below this line
var myData = myArray[0][0];
```