Q:

for of loop javascript

var i;
for (i = 0; i < cars.length; i++) {
  text += cars[i] + "<br>";
}
16
var person = {"name":"taylor","age":31};
for (property in person) {
	console.log(property,person[property]);
}
//name taylor
//age 31
15
let array = [1,2,3,4,5,6,7,8,9,10]; 
// our array that we will use the for loop on
for (let i = 0; i < array.length; i++) { 
  // this loop will console log the element at array[i] starting at 0
  // and will continue looping for i < array.length 
  console.log(array[i]);
  // after each loop i will increase by 1
}

// this will console log
// 1
// 2
// 3
// 4
// 5
// 6
// 7
// 8
// 9
// 10
2
var i;
for (i = 0; i < 10 ; i++) {
  //do something
}
3
var listItem = [
        {name: 'myName1', gender: 'male'},
        {name: 'myName2', gender: 'female'},
        {name: 'myName3', gender: 'male'},
        {name: 'myName4', gender: 'female'},
      ]

    for (const iterator of listItem) {
        console.log(iterator.name+ ' and '+ iterator.gender);
    }
8
function diagonalDifference(arr) {
    // Write your code here
    // return (arr); 11,2,4,4,5,6,10,8,-12
    let n = arr.length;
    let pri,sec = 0;

    pri = sec = 0; //initialize both diagonal sum to 0
    for (let i= 0; i < n; i++) {
        //console.log( "PRI(arr)= ", i,i);
        //console.log( arr[i][i]);
        //console.log( "SEC(arr)= ", i,n-i-1);
        //console.log( arr[i][n-i-1]);
        pri += arr[i][i];
        sec += arr[i][n - i - 1]; 
    }
	
  	// return |x| is the absolute value of x
    if(pri==sec){
        return (0);
    }else {
        if (pri>sec){
            return (pri-sec);
        }else{
            return (sec-pri);
        }
    }
}
1
for(i = 0; i < x; ++i){
  //Loop, x can be replaced with any integer; 
}
1
for (let step = 0; step < 5; step++) {
  // Runs 5 times, with values of step 0 through 4.
  console.log('Walking east one step');
}
3
const array1 = ['a', 'b', 'c'];

for (const element of array1) {
  console.log(element);
}

// expected output: "a"
// expected output: "b"
// expected output: "c"
4

New to Communities?

Join the community