Skip to content

Instantly share code, notes, and snippets.

@vanleuven
vanleuven / .js
Created November 1, 2015 23:05
Guessing Game assignment November 2, 2015
var question1 = prompt("Did you grow up in Seattle?");
question1 = question1.toLowerCase();
console.log("Response 1: " + question1);
if (question1 === "yes" || question1 === "y" || question1 === "yup" || question1 === "yep") {
alert("Well hello Northwesterner! " + "Seattle is a wonderful place to grow up.");
} else {