Traversing Arrays and ArrayLists in Java with a For Loop and with a While Loop
For Loops
Arrays:
for (int i = 0; i < newArray.length; i++) {
// Do something with the item in the Array at position i
newArray[i] += 1; // Increment it for example
}
ArrayLists:
for (int i = 0; i < newArrayList.size(); i++) {
// Do something w...
epikoeni.hashnode.dev1 min read