I am a bit new to for each loops and I'm trying to understand what are the main differences between them when working with arrays. Is there any particular set where the for each is more convenient? Is the for each basically saying for (int i = 0; i <= array.length(); i++) { array[0]} ???
Thanks.