//Method 1 using for loop
let array = [ 1, 2, 3, 4, 5, 6 ];
for (let index = 0; index < array.length; index++) {
console.log(array[index]);
}
//Method 2 using for Of loop
for (let traverse of array ){
console.log(traverse)
}
let array = [ 1, 2, 3, 4 ]; //Your array
for( let element of array ) {
//Now element takes the value of each of the elements of the array
//Do your stuff, for example...
console.log(element);
}