Skip to content

Instantly share code, notes, and snippets.

@leachy14
Created November 28, 2014 03:06
Show Gist options
  • Save leachy14/d1f5873445c0db27de32 to your computer and use it in GitHub Desktop.
Save leachy14/d1f5873445c0db27de32 to your computer and use it in GitHub Desktop.
A small JavaScript program to see if you can drink in the United States
<DOCTYPE HTML>
<html>
<head>
<title> Test </title>
</head>
<body>
<h1> This is a page used to test javascript </h1>
<script>
alert("Im going tell you if you can drink in a bar or not, Please enter your age.");
var age = prompt("What is your age?");
if ( age < 21) {
alert("Sorry bud you can't drink");
} else {
alert("Bottoms up mate!");
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment