I am confused about for loop, in "test counter" why it is used less than (jerry < tom.length)..?
public static void main (String args[]) {
int tom[] = {1, 2, 3, 4, 5};
for (int jerry=0; jerry<tom.length; jerry++)
{
System.out.println(jerry+ "\t" +tom[jerry]);
} }