Selecting from Many Options with Switch Statements
Summary
A switch statement tests a value and can have many case statements which define various possible values.
break tells JavaScript to stop executing statements.
Final Code
functioncaseInSwitch(val){varanswer="";// Only change code below this lineswitch(val){case1:answer="alpha";break;case2:answer="beta";break;case3:answer="gamma";break;case4:answer="delta";break;}// Only change code above this linereturnanswer;}caseInSwitch(1);