Created
October 17, 2020 18:07
-
-
Save mbrown3321/d23f07f13c07ec2316eb04964c6a8f33 to your computer and use it in GitHub Desktop.
This file contains 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
let results = users | |
.filter(u => u.active && u.loginCount > 50) | |
.map(u => u.id); | |
// [2,3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment