Skip to content

Instantly share code, notes, and snippets.

@Sarav-S
Created July 9, 2020 01:52
Show Gist options
  • Save Sarav-S/8d517078620c04c277c8c9ddd3639ccf to your computer and use it in GitHub Desktop.
Save Sarav-S/8d517078620c04c277c8c9ddd3639ccf to your computer and use it in GitHub Desktop.
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