Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions buildingx/qanda.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ <h2>Following</h2>
document.write("<br />")


let studentState = prompt("What state are you from?")
let studentCountry = prompt("What country are you from?")

alert("Your state is " + studentState)
console.log("Your state is " + studentState)
document.write("Your state is " + studentState)
alert("Your country is " + studentCountry)
console.log("Your country is " + studentCountry)
document.write("Your country is " + studentCountry)

// let age = 42

Expand All @@ -52,4 +52,4 @@ <h2>Following</h2>

// document.write(age)
</script>
</html>
</html>