Skip to content

Instantly share code, notes, and snippets.

@appoll
Created February 14, 2022 19:54
Show Gist options
  • Save appoll/1ba55478c911a2a6f898ded1997f5fde to your computer and use it in GitHub Desktop.
Save appoll/1ba55478c911a2a6f898ded1997f5fde to your computer and use it in GitHub Desktop.
// We define a variable for the users' age; We want to check if they are over 18, in order to be able to drink beer or not;
// Print the following messages: "You are able to drink beer, since you were born in the year: 1992" OR
// "You are NOT able to drink beer, since you were born in the year: 2016"
if (age > 12){
console.log("YES it is");
} else {
console.log("NO it is not");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment