Skip to content

Instantly share code, notes, and snippets.

@Sarav-S
Last active July 9, 2020 02:08
Show Gist options
  • Save Sarav-S/6b745dcdb25ca7e49bd22edffe6afc99 to your computer and use it in GitHub Desktop.
Save Sarav-S/6b745dcdb25ca7e49bd22edffe6afc99 to your computer and use it in GitHub Desktop.
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