1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
---
title: default
slug: Web/JavaScript/Reference/Statements/default
tags:
- JavaScript
- Keyword
- Reference
translation_of: Web/JavaScript/Reference/Statements/switch
---
<div>{{jsSidebar("Statements")}}</div>
<p><code><strong>default</strong></code> 키워드는 {{jsxref("Statements/switch", "switch")}} 구문과 {{jsxref("Statements/export", "export")}} 구문에서 사용할 수 있습니다.</p>
<div>{{EmbedInteractiveExample("pages/js/statement-default.html")}}</div>
<h2 id="구문">구문</h2>
<p>{{jsxref("Statements/switch", "switch")}} 구문 내에서는 다음과 같이 사용합니다.</p>
<pre class="syntaxbox">switch (expression) {
case value1:
//Statements executed when the result of expression matches value1
[break;]
default:
//Statements executed when none of the values match the value of the expression
[break;]
}</pre>
<p>{{jsxref("Statements/export", "export")}} 구문 내에서는 다음과 같이 사용합니다.</p>
<pre class="syntaxbox">export default <em>nameN</em> </pre>
<h2 id="설명">설명</h2>
<p>세부사항을 보려면,</p>
<ul>
<li>{{jsxref("Statements/switch", "switch")}} 구문,</li>
<li>{{jsxref("Statements/export", "export")}} 구문 페이지를 확인하세요.</li>
</ul>
<h2 id="예제">예제</h2>
<h3 id="switch에서_default_사용"><code>switch</code>에서 <code>default</code> 사용</h3>
<p>아래 예제에서 <code>expr</code> 이 "오렌지" 또는 "사과"일 때, 프로그램은 값을 "오렌지" 또는 "사과"와 일치시키고 해당 명령문을 실행합니다. 기본(<code>default</code>) 키워드는 다른 경우에 도움이 되며 연관된 명령문을 실행합니다.</p>
<pre class="brush: js">switch (expr) {
case '오렌지':
console.log('오렌지는 1000원입니다.');
break;
case '사과':
console.log('사과는 500원입니다.');
break;
default:
console.log('죄송합니다. ' + expr + '의 재고가 다 떨어졌습니다.');
}</pre>
<h3 id="export에서_default_사용"><code>export</code>에서 <code>default</code> 사용</h3>
<p>단일 값을 내보내거나 모듈의 기본 값이 필요한 경우, 기본 내보내기를 사용할 수 있습니다.</p>
<pre class="brush: js">// module "my-module.js"
let cube = function cube(x) {
return x * x * x;
};
export default cube;</pre>
<p>다른 스크립트에서 가져오는 건 간단합니다.</p>
<pre class="brush: js">// module "my-module.js"
import cube from 'my-module'; //default export gave us the liberty to say import cube, instead of import cube from 'my-module'
console.log(cube(3)); // 27
</pre>
<h2 id="명세">명세</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('ES6', '#sec-switch-statement', 'switch statement')}}</td>
<td>{{Spec2('ES6')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('ES6', '#sec-exports', 'Exports')}}</td>
<td>{{Spec2('ES6')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-switch-statement', 'switch statement')}}</td>
<td>{{Spec2('ESDraft')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-exports', 'Exports')}}</td>
<td>{{Spec2('ESDraft')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("javascript.statements.default")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li>{{jsxref("Statements/export", "export")}}</li>
<li>{{jsxref("Statements/switch", "switch")}}</li>
</ul>
|