Skip to content

Commit

Permalink
refactor(seed): Add break; to default statement on switch challeng (f…
Browse files Browse the repository at this point in the history
  • Loading branch information
jntme authored and QuincyLarson committed Jul 22, 2017
1 parent f61cc28 commit 074869d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -3787,7 +3787,7 @@
"description": [
"In a <code>switch</code> statement you may not be able to specify all possible values as <code>case</code> statements. Instead, you can add the <code>default</code> statement which will be executed if no matching <code>case</code> statements are found. Think of it like the final <code>else</code> statement in an <code>if/else</code> chain.",
"A <code>default</code> statement should be the last case.",
"<blockquote>switch (num) {<br> case value1:<br> statement1;<br> break;<br> case value2:<br> statement2;<br> break;<br>...<br> default:<br> defaultStatement;<br>}</blockquote>",
"<blockquote>switch (num) {<br> case value1:<br> statement1;<br> break;<br> case value2:<br> statement2;<br> break;<br>...<br> default:<br> defaultStatement;<br> break;<br>}</blockquote>",
"<hr>",
"Write a switch statement to set <code>answer</code> for the following conditions:<br><code>\"a\"</code> - \"apple\"<br><code>\"b\"</code> - \"bird\"<br><code>\"c\"</code> - \"cat\"<br><code>default</code> - \"stuff\""
],
Expand Down

0 comments on commit 074869d

Please sign in to comment.