How is Java\'s for loop code generated by the compiler?
For example, if I have:
for(String s : getStringArray() ) { //do something with s }
for loop is same like loop in javascript so no need to afraid
example:
for(int i=0;i<10;i++) { System.out.Println(i); }