Created
July 9, 2020 01:59
-
-
Save Sarav-S/dee1470315458de97ff558d171e06a31 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 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