Due Feb. 7
if(guess == "Manet" || guess == "Monet")
where the two vertical lines || correspond to an "OR". (Recall that testing equality uses two equal signs; it may not look like it above.) If an acceptable answer is given, disable the button and textbox; otherwise, display an alert box. Use a nested if to determine whether an acceptable answer was correct or incorrect. Display a message accordingly. Focus on the new code (the textboxes and the ifs), but remember that ideally we would prefer to have one function that handles all eight button click events. (ManetMonet.zip)