Skip to content

Instantly share code, notes, and snippets.

@ancyrweb
Last active January 12, 2022 02:14
Show Gist options
  • Save ancyrweb/289920a86cd5ae6aa55a57412ebbb58f to your computer and use it in GitHub Desktop.
Save ancyrweb/289920a86cd5ae6aa55a57412ebbb58f to your computer and use it in GitHub Desktop.
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