Answers for "for of and for in loops 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

for in and for of in js

const iterable = [10, 20, 30];

for (const value of iterable) {
  console.log("fef"+value);
}
// 10
// 20
// 30
Posted by: Guest on October-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language