3.4 KiB
3.4 KiB
id, title, localeTitle, challengeType
id | title | localeTitle | challengeType |
---|---|---|---|
56533eb9ac21ba0edf2244dd | Selecting from Many Options with Switch Statements | Selección de muchas opciones con instrucciones de cambio | 1 |
Description
switch
. Una instrucción de switch
prueba un valor y puede tener muchas declaraciones de case
que definen varios valores posibles. Las declaraciones se ejecutan desde el primer valor de case
coincidente hasta que se encuentra una break
.
Aquí hay un ejemplo de pseudocódigo :
switch(num) {valores de
case value1:
statement1;
break;
case value2:
statement2;
break;
...
case valueN:
statementN;
break;
}
case
se prueban con igualdad estricta ( ===
). La break
le dice a JavaScript que deje de ejecutar sentencias. Si se omite la break
, se ejecutará la siguiente instrucción.
Instructions
val
y establezca la answer
para las siguientes condiciones: 1
- "alfa" 2
- "beta" 3
- "gamma" 4
- "delta"
Tests
tests:
- text: <code>caseInSwitch(1)</code> debe tener un valor de "alfa"
testString: 'assert(caseInSwitch(1) === "alpha", "<code>caseInSwitch(1)</code> should have a value of "alpha"");'
- text: <code>caseInSwitch(2)</code> debe tener un valor de "beta"
testString: 'assert(caseInSwitch(2) === "beta", "<code>caseInSwitch(2)</code> should have a value of "beta"");'
- text: <code>caseInSwitch(3)</code> debe tener un valor de "gamma"
testString: 'assert(caseInSwitch(3) === "gamma", "<code>caseInSwitch(3)</code> should have a value of "gamma"");'
- text: <code>caseInSwitch(4)</code> debe tener un valor de "delta"
testString: 'assert(caseInSwitch(4) === "delta", "<code>caseInSwitch(4)</code> should have a value of "delta"");'
- text: No debes usar ninguna declaración <code>if</code> o <code>else</code>
testString: 'assert(!/else/g.test(code) || !/if/g.test(code), "You should not use any <code>if</code> or <code>else</code> statements");'
- text: Debe tener al menos 3 declaraciones de <code>break</code>
testString: 'assert(code.match(/break/g).length > 2, "You should have at least 3 <code>break</code> statements");'
Challenge Seed
function caseInSwitch(val) {
var answer = "";
// Only change code below this line
// Only change code above this line
return answer;
}
// Change this value to test
caseInSwitch(1);
Solution
function caseInSwitch(val) {
var answer = "";
switch(val) {
case 1:
answer = "alpha";
break;
case 2:
answer = "beta";
break;
case 3:
answer = "gamma";
break;
case 4:
answer = "delta";
}
return answer;
}