aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/guide/modules/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/guide/modules/index.html')
-rw-r--r--files/zh-cn/web/javascript/guide/modules/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/guide/modules/index.html b/files/zh-cn/web/javascript/guide/modules/index.html
index 1ea1f81adf..3ad682563c 100644
--- a/files/zh-cn/web/javascript/guide/modules/index.html
+++ b/files/zh-cn/web/javascript/guide/modules/index.html
@@ -125,7 +125,7 @@ export function draw(ctx, length, x, y, color) {
};
}</pre>
-<p>你能够导出函数,<code>var</code><font face="Arial, x-locale-body, sans-serif">,</font><code>let</code><font face="Arial, x-locale-body, sans-serif">,</font><code>const</code>, 和等会会看到的类。export要放在最外层;比如你不能够在函数内使用<code>export</code>。</p>
+<p>你能够导出函数,<code>var</code>,<code>let</code>,<code>const</code>, 和等会会看到的类。export要放在最外层;比如你不能够在函数内使用<code>export</code>。</p>
<p>一个更方便的方法导出所有你想要导出的模块的方法是在模块文件的末尾使用一个export 语句, 语句是用花括号括起来的用逗号分割的列表。比如:</p>