3.3 KiB
3.3 KiB
id, title, challengeType, videoUrl, forumTopicId, localeTitle
id | title | challengeType | videoUrl | forumTopicId | localeTitle |
---|---|---|---|---|---|
56533eb9ac21ba0edf2244de | Adding a Default Option in Switch Statements | 1 | https://scrimba.com/c/c3JvVfg | 16653 | Добавление опции по умолчанию в операторы switch |
Description
switch
вы не сможете указывать все возможные значения в качестве операторов case
. Вместо этого вы можете добавить оператор по default
который будет выполняться, если не найдено совпадающих операторов case
. Думайте об этом как финальном else
утверждении в качестве , if/else
цепи. В последнем случае должен использоваться оператор по default
. switch (num) {
значение case1:
statement1;
ломать;
значение case2:
оператор2;
ломать;
...
по умолчанию:
defaultStatement;
ломать;
}
Instructions
answer
для следующих условий: "a"
- "яблоко" "b"
- "птица" "c"
- "cat" default
- "stuff"
Tests
tests:
- text: <code>switchOfStuff("a")</code> should have a value of "apple"
testString: assert(switchOfStuff("a") === "apple");
- text: <code>switchOfStuff("b")</code> should have a value of "bird"
testString: assert(switchOfStuff("b") === "bird");
- text: <code>switchOfStuff("c")</code> should have a value of "cat"
testString: assert(switchOfStuff("c") === "cat");
- text: <code>switchOfStuff("d")</code> should have a value of "stuff"
testString: assert(switchOfStuff("d") === "stuff");
- text: <code>switchOfStuff(4)</code> should have a value of "stuff"
testString: assert(switchOfStuff(4) === "stuff");
- text: You should not use any <code>if</code> or <code>else</code> statements
testString: assert(!/else/g.test(code) || !/if/g.test(code));
- text: You should use a <code>default</code> statement
testString: assert(switchOfStuff("string-to-trigger-default-case") === "stuff");
- text: You should have at least 3 <code>break</code> statements
testString: assert(code.match(/break/g).length > 2);
Challenge Seed
function switchOfStuff(val) {
var answer = "";
// Only change code below this line
// Only change code above this line
return answer;
}
// Change this value to test
switchOfStuff(1);
Solution
function switchOfStuff(val) {
var answer = "";
switch(val) {
case "a":
answer = "apple";
break;
case "b":
answer = "bird";
break;
case "c":
answer = "cat";
break;
default:
answer = "stuff";
}
return answer;
}