Created
July 9, 2020 01:52
-
-
Save Sarav-S/8d517078620c04c277c8c9ddd3639ccf 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; | |
function eligibility(age, minAge) { | |
return age >= minAge; | |
} | |
eligibility(18, minAge); // true | |
eligibility(16, minAge); // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment