Yet another Switch Statement Question

Hi guys, I tried to find someone on past forums that tried this assignment like I did, but couldn’t. What am I doing wrong?

function caseInSwitch(val) {
var answer = “”;
// Only change code below this line

switch (answer) {
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;
}

// Change this value to test
caseInSwitch(1);

Can you link us to the specific challenge you are working on?

…did that work?

It doesn’t seem like you’re changing the value of answer, you’re only console-logging it which isn’t what you’re asked to do.

1 Like

yep, that was it, thank you. I need to start re-reading propblems more.

I’d also recommend reading the MDN Reference Page on Javascript Switches it’ll describe them in detail :slight_smile:

1 Like