Control Flow in JavaScript: If, Else, and Switch Explained
let ageUser_1 = 14
let ageUser_2 = 24
console.log("User 1 is not eligible to vote")
console.log("User 2 is eligible to vote")
//and so on
For all users you have to manually check age value and dec
fundamentals-of-javascript.hashnode.dev4 min read