Skip to content

Instantly share code, notes, and snippets.

@danfairs
Created June 3, 2012 18:54
Show Gist options
  • Save danfairs/2864617 to your computer and use it in GitHub Desktop.
Save danfairs/2864617 to your computer and use it in GitHub Desktop.
js
<!doctype html>
<html>
<script>
var response = prompt("Do you like me?");
if (response === "yes") {
console.log("I like you too!");
}
if (response === "no") {
console.log("GTFO");
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment