Skip to content

Instantly share code, notes, and snippets.

@samuelpath
Created December 15, 2020 15:03
Show Gist options
  • Save samuelpath/9fcfda9a578a4b65c0196083ec47d189 to your computer and use it in GitHub Desktop.
Save samuelpath/9fcfda9a578a4b65c0196083ec47d189 to your computer and use it in GitHub Desktop.
Filter
const eleves = [
{ nom: 'Pierre', age: 15 },
{ nom: 'Paul', age: 22 },
{ nom: 'Jacques', age: 18 },
{ nom: 'Jean', age: 17 }
];
// const garderMajeurs =
const elevesMajeurs = eleves.filter(garderMajeurs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment