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
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 { |