diff options
author | t7yang <t7yang@gmail.com> | 2022-01-10 08:38:06 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2022-02-16 02:35:54 +0800 |
commit | b6a647eec4df2ae42be842b33af92dc7fc8b50b7 (patch) | |
tree | 49e52279f350a9513a0a27bc7570f471859786c0 /files/zh-tw/web/javascript/guide/working_with_objects | |
parent | ea514a38735125a2b5468300311ea8b2389c8863 (diff) | |
download | translated-content-b6a647eec4df2ae42be842b33af92dc7fc8b50b7.tar.gz translated-content-b6a647eec4df2ae42be842b33af92dc7fc8b50b7.tar.bz2 translated-content-b6a647eec4df2ae42be842b33af92dc7fc8b50b7.zip |
remove `summary` and `seoSummary` class for zh-TW
Diffstat (limited to 'files/zh-tw/web/javascript/guide/working_with_objects')
-rw-r--r-- | files/zh-tw/web/javascript/guide/working_with_objects/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/web/javascript/guide/working_with_objects/index.html b/files/zh-tw/web/javascript/guide/working_with_objects/index.html index 44bda4c9b8..a2d3674365 100644 --- a/files/zh-tw/web/javascript/guide/working_with_objects/index.html +++ b/files/zh-tw/web/javascript/guide/working_with_objects/index.html @@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Guide/Working_with_Objects --- <div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Regular_Expressions", "Web/JavaScript/Guide/Details_of_the_Object_Model")}}</div> -<p class="summary">JavaScript is designed on a simple object-based paradigm. An object is a collection of properties, and a property is an association between a name (or <em>key</em>) and a value. A property's value can be a function, in which case the property is known as a method. In addition to objects that are predefined in the browser, you can define your own objects. This chapter describes how to use objects, properties, functions, and methods, and how to create your own objects.</p> +<p>JavaScript is designed on a simple object-based paradigm. An object is a collection of properties, and a property is an association between a name (or <em>key</em>) and a value. A property's value can be a function, in which case the property is known as a method. In addition to objects that are predefined in the browser, you can define your own objects. This chapter describes how to use objects, properties, functions, and methods, and how to create your own objects.</p> <h2 id="物件概觀">"物件"概觀</h2> |