From a9a68fa4984eb9929f4eba5f4f10da92ac239c41 Mon Sep 17 00:00:00 2001 From: Emer Conghaile Date: Thu, 8 Apr 2021 11:36:05 -0500 Subject: [PATCH] fix(curriculum): Remove unnecessary comments (#41774) * fix: Remove unnecessary comments https://github.com/freeCodeCamp/freeCodeCamp/pull/41612 * Add empty line --- .../basic-javascript/access-array-data-with-indexes.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.md index 68ca2cda1b..f50a82a580 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.md @@ -76,10 +76,9 @@ if(typeof myArray !== "undefined" && typeof myData !== "undefined"){(function(y, ## --seed-contents-- ```js -// Setup var myArray = [50,60,70]; -// Only change code below this line + ``` # --solutions--