Please enable JavaScript to use CodeHS

CSP Glossary

Flashcards

Course:

Module:

Lesson:

Search:

Array JavaScript

Also called a list. A data structure that holds a collection of values in a particular order

List Array

Array Index Java

The position of an element in an array. The first element is at index 0, the second element is at index 1, and so on.

Iterating over an array Java

Looping through all of the elements of an array

Index Java

Array values are stored at a particular index and we access elements in the array by referencing this index value. Index values in Arrays start a 0.

array[index] Java

Accesses an element in the array to either update or retrieve.