var txt = "";
var numbers = [45, 4, 9, 16, 25];
numbers.forEach(function(value, index, array) {
txt = txt + value + "<br>";
});
array = [ 1, 2, 3, 4, 5, 6 ];
for (index = 0; index < array.length; index++) {
console.log(array[index]);
}
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);
}
let arr = ['js', 'python', 'c++', 'dart']
// no 1
for (item of arr) {
console.log(item);
}
// no 2
for (var item = 0; item < arr.length; item++) {
console.log(arr[i]);
}
// no 3
arr.forEach(item=>{
console.log(item);
})
// no 4
arr.map(item=>{
console.log(item);
})
// no 5
var item = 0;
while (item < arr.length) {
console.log(arr[item]);
item++;
}
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[
}
Array.prototype.foo = "foo!";
var array = ['a', 'b', 'c'];
for (var i in array) {
console.log(array[i]);
}
Run code snippet
let arr = [1, 2, 3];
for(let i = 0; i < arr.length; i++){
console.log(arr[i]);
}