Created
May 25, 2016 08:15
-
-
Save vibegui/2fe9600caaf68384ee2ba0c393f2e920 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var approvedStudents = _.filter(students, isApproved) | |
_.map(approvedStudents, function (s) { return s.name }) | |
// ["John", "Luke", "Mark"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment