Skip to content

Instantly share code, notes, and snippets.

@hanwencheng
Created May 2, 2019 10:58
Show Gist options
  • Save hanwencheng/2e6c4cb43a68dbea8e381845b6bb7164 to your computer and use it in GitHub Desktop.
Save hanwencheng/2e6c4cb43a68dbea8e381845b6bb7164 to your computer and use it in GitHub Desktop.
hot jar test
const result = people.reduce((acc, person)=>{
if(person.age > 40 || person.age < 30)
return acc
acc[person.gender].push(person)
return acc;
}, {male :[], female:[]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment