let array = [1,2,3];
for(let element of array){ //iterates over each element, in some cases is necesary to use another type of for
console.log(element);
}
// This is a way to loop threw a 2 dimensional array.
// If the array has even more dimension you have to use recurrsion.
const Arrays = [["Array 1"], ["Array 2"]];
Arrays.forEach((array, index) => {
console.log(index);
array.forEach((item, index) => {
console.log(item);
});
});
let arbitraryArr = [1, 2, 3];
// below I choose let, but var and const can also be used
for (let arbitraryElementName of arbitraryArr) {
console.log(arbitraryElementName);
}
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);
}
array = [ 1, 2, 3, 4, 5, 6 ];
//set variable//set the stop count // increment each loop
for (let i = 0; i < array.length ;i++) {
array[i] //iterate through each index.
//add the intructions you would like to perform.
// add any method to array[
}
let array = [1,2,3];
for(let element of array){ //iterates over each element, in some cases is necesary to use another type of for
console.log(element);
}
// This is a way to loop threw a 2 dimensional array.
// If the array has even more dimension you have to use recurrsion.
const Arrays = [["Array 1"], ["Array 2"]];
Arrays.forEach((array, index) => {
console.log(index);
array.forEach((item, index) => {
console.log(item);
});
});
let arbitraryArr = [1, 2, 3];
// below I choose let, but var and const can also be used
for (let arbitraryElementName of arbitraryArr) {
console.log(arbitraryElementName);
}
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);
}
array = [ 1, 2, 3, 4, 5, 6 ];
//set variable//set the stop count // increment each loop
for (let i = 0; i < array.length ;i++) {
array[i] //iterate through each index.
//add the intructions you would like to perform.
// add any method to array[
}