Skip to content

Instantly share code, notes, and snippets.

@kwoncharles
Created December 24, 2020 00:16
Show Gist options
  • Select an option

  • Save kwoncharles/20851c79a2a782884d4d650e5a53258b to your computer and use it in GitHub Desktop.

Select an option

Save kwoncharles/20851c79a2a782884d4d650e5a53258b to your computer and use it in GitHub Desktop.
IoC Filter example
// 일반 filter
const dogs = filterDogs(animals)
// 제어역전 filter
const dogs = animals.filter(animal => animal.species === 'dog')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment