use for each code example
Example 1: for each
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
// expected output: "a"
// expected output: "b"
// expected output: "c"
Example 2: how to do for each in java
for(int i : alist)
{
i+=1
}