Skip to content

Instantly share code, notes, and snippets.

@Sarav-S
Created July 9, 2020 01:59
Show Gist options
  • Save Sarav-S/dee1470315458de97ff558d171e06a31 to your computer and use it in GitHub Desktop.
Save Sarav-S/dee1470315458de97ff558d171e06a31 to your computer and use it in GitHub Desktop.
const minAge = 18;
const eligibility = minAge => age => age >= minAge;
const check = eligibility(minAge);
check(20) // returns true;
check(16) // returns false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment