aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/guide/functions
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:06 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commit711e090fcd2bc3e79231a75f88fc75563f135ca2 (patch)
treee0b8abde182a5a499795872caf26d9bd4f1d1932 /files/zh-cn/web/javascript/guide/functions
parentb6a647eec4df2ae42be842b33af92dc7fc8b50b7 (diff)
downloadtranslated-content-711e090fcd2bc3e79231a75f88fc75563f135ca2.tar.gz
translated-content-711e090fcd2bc3e79231a75f88fc75563f135ca2.tar.bz2
translated-content-711e090fcd2bc3e79231a75f88fc75563f135ca2.zip
remove `summary` and `seoSummary` class for zh-CN
Diffstat (limited to 'files/zh-cn/web/javascript/guide/functions')
-rw-r--r--files/zh-cn/web/javascript/guide/functions/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/javascript/guide/functions/index.html b/files/zh-cn/web/javascript/guide/functions/index.html
index 54e0bffa4b..ab6677c5d9 100644
--- a/files/zh-cn/web/javascript/guide/functions/index.html
+++ b/files/zh-cn/web/javascript/guide/functions/index.html
@@ -10,9 +10,9 @@ translation_of: Web/JavaScript/Guide/Functions
---
<p>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Loops_and_iteration", "Web/JavaScript/Guide/Expressions_and_Operators")}}</p>
-<p class="summary">函数是 JavaScript 中的基本组件之一。 一个函数是 JavaScript 过程 — 一组执行任务或计算值的语句。要使用一个函数,你必须将其定义在你希望调用它的作用域内。</p>
+<p>函数是 JavaScript 中的基本组件之一。 一个函数是 JavaScript 过程 — 一组执行任务或计算值的语句。要使用一个函数,你必须将其定义在你希望调用它的作用域内。</p>
-<p class="summary">一个JavaScript 函数用<code>function</code>关键字定义,后面跟着函数名和圆括号。</p>
+<p>一个JavaScript 函数用<code>function</code>关键字定义,后面跟着函数名和圆括号。</p>
<p>查看 <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions">JavaScript 函数详细参考文档</a> 了解更多。</p>