aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/reference/statements/export/index.html
diff options
context:
space:
mode:
authoralattalatta <urty5656@gmail.com>2021-08-14 15:57:42 +0900
committerGitHub <noreply@github.com>2021-08-14 15:57:42 +0900
commit86792571ae1a21a1e4bf526747d6dd1c2636d167 (patch)
treec8cabac7926ab152ce22d07e4670fcb90943d61a /files/ko/web/javascript/reference/statements/export/index.html
parenta04c78de5e61e8b716173968d63f6113a09651bd (diff)
downloadtranslated-content-86792571ae1a21a1e4bf526747d6dd1c2636d167.tar.gz
translated-content-86792571ae1a21a1e4bf526747d6dd1c2636d167.tar.bz2
translated-content-86792571ae1a21a1e4bf526747d6dd1c2636d167.zip
Clean up JS reference documents (#1818)
* Clean up JavaScript references HTML code - Remove inline styles - Remove <font> elements - Remove title attribute * Remove sup/sub from JavaScript reference * Remove name attrs from JavaScript reference * Remove legacy browser compat elements * Remove duplicate browser-compat key
Diffstat (limited to 'files/ko/web/javascript/reference/statements/export/index.html')
-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>