Last active
January 12, 2022 02:14
-
-
Save ancyrweb/289920a86cd5ae6aa55a57412ebbb58f 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
const users = [ | |
{ | |
name: "Jane", | |
balance: 100, | |
}, | |
{ | |
name: "John", | |
balance: 75, | |
}, | |
{ | |
name: "Ellis", | |
balance: 31.3, | |
}, | |
]; | |
const hasEnoughMoney = (threshold) => (user) => user.balance >= threshold; | |
const usersWithEnoughMoney = users.filter(hasEnoughMoney(50)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment