Answers for "js foreach return"

56

javascript foreach

var colors = ['red', 'blue', 'green'];

colors.forEach(function(color) {
  console.log(color);
});
Posted by: Guest on June-27-2019
17

foreach javascript

var items = ["item1", "item2", "item3"]
var copie = [];

items.forEach(function(item){
  copie.push(item);
});
Posted by: Guest on February-27-2020
1

boucle foreach js

let listeDePays = ['France', 'Belgique', 'Japon', 'Maroc'];
listeDePays.forEach(pays => console.log(pays));
Posted by: Guest on March-13-2020
0

what foreach method returns in javascript

function double(arr) {
  return arr.forEach(num => num*2);
}

console.log(double([1,2,3,4])) //undefined
Posted by: Guest on December-29-2020
0

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 )
Posted by: Guest on June-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language