aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/statements/switch
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/reference/statements/switch')
-rw-r--r--files/ko/web/javascript/reference/statements/switch/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/reference/statements/switch/index.html b/files/ko/web/javascript/reference/statements/switch/index.html
index b4eb68e5a7..46b13e380d 100644
--- a/files/ko/web/javascript/reference/statements/switch/index.html
+++ b/files/ko/web/javascript/reference/statements/switch/index.html
@@ -49,7 +49,7 @@ translation_of: Web/JavaScript/Reference/Statements/switch
<p>If no matching <code>case</code> clause is found, the program looks for the optional <code>default</code> clause, and if found, transfers control to that clause, executing the associated statements. If no <code>default</code> clause is found, the program continues execution at the statement following the end of <code>switch</code>. By convention, the <code>default</code> clause is the last clause, but it does not need to be so.</p>
-<p>The optional <code><a href="/en-US/docs/Web/JavaScript/Reference/Statements/break" title="JavaScript/Reference/Statements/break">break</a></code> statement associated with each case label ensures that the program breaks out of switch once the matched statement is executed and continues execution at the statement following switch. If <code>break</code> is omitted, the program continues execution at the next statement in the <code>switch</code> statement.</p>
+<p>The optional <code><a href="/en-US/docs/Web/JavaScript/Reference/Statements/break">break</a></code> statement associated with each case label ensures that the program breaks out of switch once the matched statement is executed and continues execution at the statement following switch. If <code>break</code> is omitted, the program continues execution at the next statement in the <code>switch</code> statement.</p>
<h2 id="예제">예제</h2>