<script type="text/javascript">
var voterAge = Number(prompt("How old are you?"));
function voterCheck(){
if (voterAge >= 18){
alert("You can vote!");
} else {
alert("You gotta wait!");
}
}
voterCheck();
</script>