aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/statements/export
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-08-17 11:37:07 +0900
committerGitHub <noreply@github.com>2021-08-17 11:37:07 +0900
commit98a7793a51bdbdeefb172842e677dca22eb779e5 (patch)
treef07cde27678193afe366832bd58c958657fadc6c /files/ko/web/javascript/reference/statements/export
parent6c30dec8016abec2fba8caf0bd07d0e145c37caf (diff)
parenta28f6c8632ced6d91d311614d96ab643e5ef7058 (diff)
downloadtranslated-content-98a7793a51bdbdeefb172842e677dca22eb779e5.tar.gz
translated-content-98a7793a51bdbdeefb172842e677dca22eb779e5.tar.bz2
translated-content-98a7793a51bdbdeefb172842e677dca22eb779e5.zip
Merge branch 'mdn:main' into 20210811-orphaned/Web/API/NavigatorLanguage
Diffstat (limited to 'files/ko/web/javascript/reference/statements/export')
-rw-r--r--files/ko/web/javascript/reference/statements/export/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/web/javascript/reference/statements/export/index.html b/files/ko/web/javascript/reference/statements/export/index.html
index 1c15d4e7f9..98cb2ee55a 100644
--- a/files/ko/web/javascript/reference/statements/export/index.html
+++ b/files/ko/web/javascript/reference/statements/export/index.html
@@ -148,7 +148,7 @@ console.log(foo); // 4.555806215962888</pre>
<h3 id="기본_내보내기_사용">기본 내보내기 사용</h3>
-<p>단일 값을 내보낼 때나 모듈의 폴백<sup>fallback</sup> 값이 필요할 땐 기본 내보내기를 사용할 수 있습니다.</p>
+<p>단일 값을 내보낼 때나 모듈의 폴백 값이 필요할 땐 기본 내보내기를 사용할 수 있습니다.</p>
<pre class="brush: js">// module "my-module.js"
export default function cube(x) {
@@ -160,7 +160,7 @@ export default function cube(x) {
<pre class="brush: js">import cube from './my-module.js';
console.log(cube(3)); // 27</pre>
-<p><code><font face="Open Sans, arial, sans-serif">e</font>xport default</code>를 사용할 때 <code>var</code>, <code>let</code>, <code>const</code>는 사용하지 못합니다.</p>
+<p><code>export default</code>를 사용할 때 <code>var</code>, <code>let</code>, <code>const</code>는 사용하지 못합니다.</p>
<h2 id="명세">명세</h2>