javascript for iterate code example
Example 1: for in loop javascript
var person = {"name":"taylor","age":31};
for (property in person) {
console.log(property,person[property]);
}
Example 2: looping in javascript
for (initialization; test condition; iteration statement) {
Statement(s) to be executed if test condition is true
}
Example 3: javascript loop through array
array iteration styles illustrate programming paradigms
let newArray = []; const theArray = [2, 4, 6, 8, 10]
for (var i = 0; i < theArray.length; i++) {
console.log(theArray[i]);
newArray[i] = theArray[i] * theArray[i]
}
function f1(theValue, theIndex, originalArray) { numVal = numVal * theValue }
theArray.forEach(f1); console.log( ` creates ${ newArray }` );
run.addEventListener("click", function () {cpeople.forEach((element) => console.log(element.firstname));});
function f1(v,i,a) { v=v*v }
const constArray = theArray.map(fNumbers);
console.log( ` immutable ${ newArray }` );