A person can Vote or not using JavaScript
<script> function canVote(age) { if (age >= 18) { return " Eligible to vote. " ; } else { return " Not eligible to vote. " ; } } let …
A person can Vote or not using JavaScript Read More<script> function canVote(age) { if (age >= 18) { return " Eligible to vote. " ; } else { return " Not eligible to vote. " ; } } let …
A person can Vote or not using JavaScript Read More