Trying to figure out switch statements. Help plssss

Tell us what’s happening:
Trying to figure out why my code isn’t returning the correct values. Been trying to figure out where I’ve gone wrong but I’m stumped :confused:

Your code so far


function caseInSwitch(val) {
var answer = "";
// Only change code below this line
switch(val) {
case 1:
console.log("alpha");
break;
case 2:
console.log("beta");
break;
case 3:
console.log("gamma");
break;
case 4:
console.log("delta");
break;
}


// Only change code above this line
return answer;
}

caseInSwitch(1);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15.

Challenge: Selecting from Many Options with Switch Statements

Link to the challenge:

My console is outputting “alpha” 3 times for whatever reason

your function needs to return the value, not just print it, you have an answer variable ready to use

1 Like

wow that obvious huh :sweat_smile: thanks for your help!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.