traverse through new array javascript code example

Example 1: 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
});

Example 2: javascript loop through array

// looping through an array in javascript using our own myEach function

// Write an `Array.prototype.myEach(callback)` method that invokes a callback
// for every element in an array and returns undefined.
Array.prototype.myEach = function(callback) {
    for (let i = 0 ; i < this.length ; i ++) {
        callback(this[i]);
    }
}

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

array.myEach(function (element) {
	console.log(element); // this will print each element in the array
    // Code to do something to each element in the array
});