Q:

javascript forEach return

const array1 = ['a', 'b', 'c'];

array1.forEach(element => console.log(element));
20
const list = [{ name: "John", age: 36 },{ name: "Jack", age: 17 }];

// if you just have to FIND an object with a specific value,
// use Array.prototype.find:
const foundHim = list.find( person => person.name === "John" );
console.log( foundHim );

// if you still want to / need to RETURN the object / value
let returnedHim;
list.forEach( person => {
  if ( person.age === 17 ) {
    returnedHim = person;
  }
});

console.log( returnedHim )
1

New to Communities?

Join the community