Answers for "for in loop and for of loop javascript"

8

javascript for of

const array = ['hello', 'world', 'of', 'Corona'];

for (const item of array) {
  console.log(item);
}
Posted by: Guest on March-13-2020
2

for of loop javascript

const people = [{ name: 'Karl', location: 'UK' }, 
                { name: 'Steve', location: 'US' }];

for (const person of people) {
    console.log(person.name); // "karl", then "steve"
    console.log(person.location); // "UK", then "US"
}
Posted by: Guest on January-29-2022
0

javascript for of loop

(function() {
  for (const argument of arguments) {
    console.log(argument);
  }
})(1, 2, 3);

// 1
// 2
// 3
Posted by: Guest on August-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language