UNPKG

@darshparikh16/is-valid

Version:

Check whether a person is eligible to drive the vehicle or not

9 lines (8 loc) 165 B
const isEligible = (age) => { if(age >= 18){ return "Eligible"; } else { return "Not Eligible"; } } module.exports = isEligible;