Question: Exercise 30 refer to the following code: var vacation = prompt(What do you want to do during Spring Break? Type S for skiing, F for
Exercise 30 refer to the following code:
var vacation = prompt("What do you want to do during Spring Break?
Type S for skiing, F for fishing, H for hiking,8 J for learning JavaScript.", " ");
if (vacation == 'S')
document.write("You should go to Aspen.
");
if (vacation == 'H')
document.write("Be sure to buy good hiking boots.
");
if (vacation == 'F')
document.write("Worms make good bait.
");
if (vacation == 'J')
document.write("You're gonna have soooo much fun!
");
30. Rewrite the code using a switch statement.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
