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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!