Last active
March 16, 2023 03:21
-
-
Save pacdiv/59bdb61a942a70791199714af4b4a2a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const characters = [ | |
{ id: 1, name: 'ironman' }, | |
{ id: 2, name: 'black_widow' }, | |
{ id: 3, name: 'captain_america' }, | |
{ id: 4, name: 'captain_america' }, | |
]; | |
function getCharacter(name) { | |
return character => character.name === name; | |
} | |
console.log(characters.filter(getCharacter('captain_america'))); | |
// [ | |
// { id: 3, name: 'captain_america' }, | |
// { id: 4, name: 'captain_america' }, | |
// ] | |
console.log(characters.find(getCharacter('captain_america'))); | |
// { id: 3, name: 'captain_america' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment