Created
February 14, 2022 19:54
-
-
Save appoll/1ba55478c911a2a6f898ded1997f5fde to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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