From f3ee4f85ae185ec6279db99a12c23f6992210b7e Mon Sep 17 00:00:00 2001 From: Marco Valero <43689503+ValeroM@users.noreply.github.com> Date: Sun, 10 Nov 2019 15:53:05 -0500 Subject: [PATCH] Changes to "access-array-data-with-indexes.english" challenge description (#37730) * edited description to be a little more clear on how to access elements in an array through indeces * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.english.md Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> --- .../basic-javascript/access-array-data-with-indexes.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.english.md index b74f111c8f..21246f7165 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.english.md @@ -9,7 +9,7 @@ forumTopicId: 16158 ## Description
We can access the data inside arrays using indexes. -Array indexes are written in the same bracket notation that strings use, except that instead of specifying a character, they are specifying an entry in the array. Like strings, arrays use zero-based indexing, so the first element in an array is element 0. +Array indexes are written in the same bracket notation that strings use, except that instead of specifying a character, they are specifying an entry in the array. Like strings, arrays use zero-based indexing, so the first element in an array has an index of 0.
Example