Skip to content

Instantly share code, notes, and snippets.

@greaveselliott
Created August 20, 2017 21:27
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 greaveselliott/27ab622c646515cd57a75c8f11566e16 to your computer and use it in GitHub Desktop.
Save greaveselliott/27ab622c646515cd57a75c8f11566e16 to your computer and use it in GitHub Desktop.
function simpleFilter(people) {
return people.filter(function(person){
return person.age >= 30 && person.age <= 40 && person.gender === "male";
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment