Skip to content

Instantly share code, notes, and snippets.

@heryvandoro
Created October 2, 2018 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heryvandoro/70cb24c20d3ad4fa120cfdfb56d60c49 to your computer and use it in GitHub Desktop.
Save heryvandoro/70cb24c20d3ad4fa120cfdfb56d60c49 to your computer and use it in GitHub Desktop.
let numbers = [1,3,4,2];
let evenNumber = numbers.find(number => {
return number % 2 == 0;
});
console.log(evenNumber);
/* Output :
4
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment