2018-10-16 21:32:40 +05:30

278 B

title
title
Access an Array's Contents Using Bracket Notation

Access an Array's Contents Using Bracket Notation

  • Remember the arrays index begins at 0 so the postion of b will be located in myArray[1].

Solution

myArray[1] = "anything we want";