Arrays

What are arrays? Arrays are used to store multiple data values in a single variable. Arrays store lists of data – numbers, strings, Booleans and even other arrays. Each item in the array has an index – which is a number that can be used to access that element in the array. The index value…

Read More