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