Looping Through Arrays code example

Example 1: how to loop through an array

int[] numbers = {1,2,3,4,5};
for (int i = 0; i < numbers.length; i++) {
	System.out.println(i);
}

Example 2: loop over an array

let fruits = ['Apple', 'Banana'];

fruits.forEach(function(item, index, array) {
  console.log(item, index);
});
// Apple 0
// Banana 1

Example 3: java loop through array

class LoopThroughArray {
	public static void main(String[] args)
	{

		int[] myArr = {1, 2, 3, 4};

		for(int i : myArr){

			System.out.println(i + "\n")

		}

		/* Output:
		1
		2
		3
		4
		*/

	}
}

Example 4: how to iterate in array of array

var printArray = function(arr) {
    if ( typeof(arr) == "object") {
        for (var i = 0; i < arr.length; i++) {
            printArray(arr[i]);
        }
    }
    else document.write(arr);
}

printArray(parentArray);

Tags:

Java Example