From 97cc61acea45856e453326b88474acf96c8abd2c Mon Sep 17 00:00:00 2001 From: Amitkm-450 <130365583+Amitkm-450@users.noreply.github.com> Date: Fri, 21 Apr 2023 18:07:10 +0530 Subject: [PATCH] Update indices.md change the first letter of 3rd line to uppercase . --- arrays/indices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrays/indices.md b/arrays/indices.md index cddbbb7f..5ae60850 100644 --- a/arrays/indices.md +++ b/arrays/indices.md @@ -1,6 +1,6 @@ # Indices -So you have your array of data elements, but what if you want to access a specific element? That is where indices come in. An **index** refers to a spot in the array. indices logically progress one by one, but it should be noted that the first index in an array is 0, as it is in most languages. Brackets [] are used to signify you are referring to an index of an array. +So you have your array of data elements, but what if you want to access a specific element? That is where indices come in. An **index** refers to a spot in the array. Indices logically progress one by one, but it should be noted that the first index in an array is 0, as it is in most languages. Brackets [] are used to signify you are referring to an index of an array. ```javascript // This is an array of strings