Indexed Access Operator and Augmented Assignments
Learn how to access elements in collections using [] brackets and get methods, and explore augmented assignments for modifying variables and collections.
We'll cover the following...
The indexed access operator
In programming, there are two popular conventions for getting or setting elements in collections.
The first uses
[]
bracketsThe second uses the
get
andset
methods
In Java, we use the first convention for arrays and the ...