foreach jas
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
foreach jas
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
what foreach method returns in javascript
function double(arr) {
return arr.forEach(num => num*2);
}
console.log(double([1,2,3,4])) //undefined
javascript forEach return
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 )
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us