Answers for "Looping Through Arrays"

13

loop through an array javascript

let array = ['Item 1', 'Item 2', 'Item 3'];

// Here's 4 different ways
for (let index = 0; index < array.length; index++) {
  console.log(array[index]);
}

for (let index in array) {
  console.log(array[index]);
}

for (let value of array) {
  console.log(value); // Will log value in array
}

array.forEach((value, index) => {
  console.log(index); // Will log each index
  console.log(value); // Will log each value
});
Posted by: Guest on March-25-2020
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);
}
Posted by: Guest on April-21-2020
0

loop over an array

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

fruits.forEach(function(item, index, array) {
  console.log(item, index);
});
// Apple 0
// Banana 1
Posted by: Guest on November-22-2020
1

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
		*/

	}
}
Posted by: Guest on August-31-2020
0

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);
Posted by: Guest on September-17-2020

Code answers related to "Looping Through Arrays"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language