for each loop for array code example
Example 1: javascript foreach
const avengers = ['thor', 'captain america', 'hulk'];
avengers.forEach((item, index)=>{
console.log(index, item)
})
Example 2: java for each
for(<Data Type> item : itemset) {
}
Example 3: java for each loop
int[] array = new int[]{4, 8, 4, 2, 2, 1, 1, 5, 9};
for( int k: array )
{
System.out.println("k = "+k);
}
Example 4: java foreach
List<String> someList = new ArrayList<String>();
for (String item : someList) {
System.out.println(item);
}