From 591a534701663af6a79293fb17cbb1ff23a2650d Mon Sep 17 00:00:00 2001 From: Emer Conghaile Date: Thu, 8 Apr 2021 11:40:34 -0500 Subject: [PATCH] Remove unnecessary comments (#41775) https://github.com/freeCodeCamp/freeCodeCamp/pull/41612 --- .../access-multi-dimensional-arrays-with-indexes.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.md index a5ba1310c9..e56375d274 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.md @@ -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]; ```