For Fun
function showAnswer() {
var x = document.getElementById("answerDiv");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
Can you correctly identify this structure?
Dear NPDN Community,
