aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/guide/working_with_objects/index.html
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/working_with_objects/index.html
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/working_with_objects/index.html')
-rw-r--r--files/zh-cn/web/javascript/guide/working_with_objects/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/guide/working_with_objects/index.html b/files/zh-cn/web/javascript/guide/working_with_objects/index.html
index 1092d05e0a..28f6dd54d5 100644
--- a/files/zh-cn/web/javascript/guide/working_with_objects/index.html
+++ b/files/zh-cn/web/javascript/guide/working_with_objects/index.html
@@ -12,7 +12,7 @@ translation_of: Web/JavaScript/Guide/Working_with_Objects
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Text_formatting", "Web/JavaScript/Guide/Details_of_the_Object_Model")}}</div>
-<p class="summary">JavaScript 的设计是一个简单的基于对象的范式。一个对象就是一系列属性的集合,一个属性包含一个名和一个值。一个属性的值可以是函数,这种情况下属性也被称为<em>方法</em>。除了浏览器里面预定义的那些对象之外,你也可以定义你自己的对象。本章节讲述了怎么使用对象、属性、函数和方法,怎样实现自定义对象。</p>
+<p>JavaScript 的设计是一个简单的基于对象的范式。一个对象就是一系列属性的集合,一个属性包含一个名和一个值。一个属性的值可以是函数,这种情况下属性也被称为<em>方法</em>。除了浏览器里面预定义的那些对象之外,你也可以定义你自己的对象。本章节讲述了怎么使用对象、属性、函数和方法,怎样实现自定义对象。</p>
<h2 id="对象概述">对象概述</h2>