aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw
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
commitb6a647eec4df2ae42be842b33af92dc7fc8b50b7 (patch)
tree49e52279f350a9513a0a27bc7570f471859786c0 /files/zh-tw
parentea514a38735125a2b5468300311ea8b2389c8863 (diff)
downloadtranslated-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')
-rw-r--r--files/zh-tw/web/javascript/closures/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/control_flow_and_error_handling/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/expressions_and_operators/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/grammar_and_types/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/indexed_collections/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/iterators_and_generators/index.html4
-rw-r--r--files/zh-tw/web/javascript/guide/keyed_collections/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/loops_and_iteration/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/numbers_and_dates/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/working_with_objects/index.html2
-rw-r--r--files/zh-tw/web/javascript/index.html2
12 files changed, 12 insertions, 14 deletions
diff --git a/files/zh-tw/web/javascript/closures/index.html b/files/zh-tw/web/javascript/closures/index.html
index f9ed8c84f7..fbac2c5b07 100644
--- a/files/zh-tw/web/javascript/closures/index.html
+++ b/files/zh-tw/web/javascript/closures/index.html
@@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Closures
---
<div>{{jsSidebar("Intermediate")}}</div>
-<p class="summary">閉包(Closure)是函式以及該函式被宣告時所在的作用域環境(lexical environment)的組合。</p>
+<p>閉包(Closure)是函式以及該函式被宣告時所在的作用域環境(lexical environment)的組合。</p>
<h2 id="語法作用域(Lexical_scoping)">語法作用域(Lexical scoping)</h2>
diff --git a/files/zh-tw/web/javascript/guide/control_flow_and_error_handling/index.html b/files/zh-tw/web/javascript/guide/control_flow_and_error_handling/index.html
index fd658f1c77..8ea2bc14cb 100644
--- a/files/zh-tw/web/javascript/guide/control_flow_and_error_handling/index.html
+++ b/files/zh-tw/web/javascript/guide/control_flow_and_error_handling/index.html
@@ -11,7 +11,7 @@ translation_of: Web/JavaScript/Guide/Control_flow_and_error_handling
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Grammar_and_types", "Web/JavaScript/Guide/Loops_and_iteration")}}</div>
-<p class="summary">JavaScript 擁有許多陳述式,特別是流程控制的陳述式,你可以用這些陳述式來增加程式的互動性。這個章節將會概要介紹陳述式。</p>
+<p>JavaScript 擁有許多陳述式,特別是流程控制的陳述式,你可以用這些陳述式來增加程式的互動性。這個章節將會概要介紹陳述式。</p>
<p><a href="/zh-TW/docs/Web/JavaScript/Reference/Statements">JavaScript 參考</a>中有比本章更多關於陳述式的細節。 在 Javascript 程式碼中,分號(;)被用來隔開陳述式。</p>
diff --git a/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html b/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
index c4a1dd74e6..0dcf129b93 100644
--- a/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
+++ b/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
@@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Guide/Expressions_and_Operators
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Functions", "Web/JavaScript/Guide/Numbers_and_dates")}}</div>
-<p class="summary">這個章節將講述 JavaScript 的運算式與運算子,包括賦值運算子,比較運算子,算術運算子,位元運算子, 邏輯運算子, 字串運算子, 條件(三元)運算子 以及更多運算子.</p>
+<p>這個章節將講述 JavaScript 的運算式與運算子,包括賦值運算子,比較運算子,算術運算子,位元運算子, 邏輯運算子, 字串運算子, 條件(三元)運算子 以及更多運算子.</p>
<p>更多關於運算子以及運算式的資料可以在 <a href="/en-US/docs/Web/JavaScript/Reference/Operators">reference</a> 中找到。</p>
diff --git a/files/zh-tw/web/javascript/guide/grammar_and_types/index.html b/files/zh-tw/web/javascript/guide/grammar_and_types/index.html
index 7299e5d1c6..48c5d84521 100644
--- a/files/zh-tw/web/javascript/guide/grammar_and_types/index.html
+++ b/files/zh-tw/web/javascript/guide/grammar_and_types/index.html
@@ -8,7 +8,7 @@ translation_of: Web/JavaScript/Guide/Grammar_and_types
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Introduction", "Web/JavaScript/Guide/Control_flow_and_error_handling")}}</div>
-<p class="summary">本章討論 JavaScript 的基本語法與基礎資料類型、包括變數、常數、字元常數</p>
+<p>本章討論 JavaScript 的基本語法與基礎資料類型、包括變數、常數、字元常數</p>
<h2 id="基礎知識">基礎知識</h2>
diff --git a/files/zh-tw/web/javascript/guide/index.html b/files/zh-tw/web/javascript/guide/index.html
index 40b503bb8f..c7ba53958a 100644
--- a/files/zh-tw/web/javascript/guide/index.html
+++ b/files/zh-tw/web/javascript/guide/index.html
@@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Guide
---
<div>{{jsSidebar("JavaScript Guide")}}</div>
-<p class="summary">JavaScript 指南會讓您了解如何使用 <a href="/zh-TW/docs/Web/JavaScript">JavaScript</a> 並給您這個語言的概觀。若您需要語言功能詳細資訊請參考 <a href="/zh-TW/docs/Web/JavaScript/Reference">JavaScript 參考文件</a>。</p>
+<p>JavaScript 指南會讓您了解如何使用 <a href="/zh-TW/docs/Web/JavaScript">JavaScript</a> 並給您這個語言的概觀。若您需要語言功能詳細資訊請參考 <a href="/zh-TW/docs/Web/JavaScript/Reference">JavaScript 參考文件</a>。</p>
<h2 id="章節">章節</h2>
diff --git a/files/zh-tw/web/javascript/guide/indexed_collections/index.html b/files/zh-tw/web/javascript/guide/indexed_collections/index.html
index b34c419252..a5e843c220 100644
--- a/files/zh-tw/web/javascript/guide/indexed_collections/index.html
+++ b/files/zh-tw/web/javascript/guide/indexed_collections/index.html
@@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Guide/Indexed_collections
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Regular_Expressions", "Web/JavaScript/Guide/Keyed_Collections")}}</div>
-<p class="summary">This chapter introduces collections of data which are ordered by an index value. This includes arrays and array-like constructs such as {{jsxref("Array")}} objects and {{jsxref("TypedArray")}} objects.</p>
+<p>This chapter introduces collections of data which are ordered by an index value. This includes arrays and array-like constructs such as {{jsxref("Array")}} objects and {{jsxref("TypedArray")}} objects.</p>
<h2 id="Array_object"><code>Array</code> object</h2>
diff --git a/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html b/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html
index 6ad6128a6f..8c53a56eb2 100644
--- a/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html
+++ b/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html
@@ -5,9 +5,9 @@ translation_of: Web/JavaScript/Guide/Iterators_and_Generators
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Using_promises", "Web/JavaScript/Guide/Meta_programming")}}</div>
-<p class="summary">處理集合中的每個項目是很常見的操作,JavaScript提供了許多迭代集合的方法,從簡單的 {{jsxref("Statements/for","for")}} 循環到 {{jsxref("Global_Objects/Array/map","map()")}} 和  {{jsxref("Global_Objects/Array/filter","filter()")}}。</p>
+<p>處理集合中的每個項目是很常見的操作,JavaScript提供了許多迭代集合的方法,從簡單的 {{jsxref("Statements/for","for")}} 循環到 {{jsxref("Global_Objects/Array/map","map()")}} 和  {{jsxref("Global_Objects/Array/filter","filter()")}}。</p>
-<p class="summary">Iterators 和 Generators 將迭代的概念直接帶進核心語言,並提供一個機制來客製化  {{jsxref("Statements/for...of","for...of")}}  的循環行為。</p>
+<p>Iterators 和 Generators 將迭代的概念直接帶進核心語言,並提供一個機制來客製化  {{jsxref("Statements/for...of","for...of")}}  的循環行為。</p>
<p>更多詳情請參考:</p>
diff --git a/files/zh-tw/web/javascript/guide/keyed_collections/index.html b/files/zh-tw/web/javascript/guide/keyed_collections/index.html
index ef0fa369dc..4a2d5d3203 100644
--- a/files/zh-tw/web/javascript/guide/keyed_collections/index.html
+++ b/files/zh-tw/web/javascript/guide/keyed_collections/index.html
@@ -11,7 +11,7 @@ translation_of: Web/JavaScript/Guide/Keyed_collections
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Indexed_Collections", "Web/JavaScript/Guide/Working_with_Objects")}}</div>
-<p class="summary">本章介紹用 “key” 來整理的資料集合 ; Map 和 Set objects 相當於多個可重複的元素依照插入順序進行排序。</p>
+<p>本章介紹用 “key” 來整理的資料集合 ; Map 和 Set objects 相當於多個可重複的元素依照插入順序進行排序。</p>
<h2 id="Maps">Maps</h2>
diff --git a/files/zh-tw/web/javascript/guide/loops_and_iteration/index.html b/files/zh-tw/web/javascript/guide/loops_and_iteration/index.html
index ca913c3d2e..deb3a3ba8c 100644
--- a/files/zh-tw/web/javascript/guide/loops_and_iteration/index.html
+++ b/files/zh-tw/web/javascript/guide/loops_and_iteration/index.html
@@ -10,7 +10,7 @@ translation_of: Web/JavaScript/Guide/Loops_and_iteration
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Control_flow_and_error_handling", "Web/JavaScript/Guide/Functions")}}</div>
-<p class="summary">迴圈提供一個快速又簡潔的方法來重複地做某件事。這個章節的<a href="/zh-TW/docs/Web/JavaScript/Guide">JavaScript教學</a>會介紹在JavaScript可以使用的幾種不同的迭代陳述式。 </p>
+<p>迴圈提供一個快速又簡潔的方法來重複地做某件事。這個章節的<a href="/zh-TW/docs/Web/JavaScript/Guide">JavaScript教學</a>會介紹在JavaScript可以使用的幾種不同的迭代陳述式。 </p>
<p>你可以將迴圈想成一個電腦版本的"往一個方向走X步,然後往另一個方向走Y步"的遊戲;作為範例,"往東走五步"可以用這個方法用迴圈表示:</p>
diff --git a/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html b/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html
index 4bc86711c0..030c75da59 100644
--- a/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html
+++ b/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html
@@ -5,7 +5,7 @@ translation_of: Web/JavaScript/Guide/Numbers_and_dates
---
<div>{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Expressions_and_Operators", "Web/JavaScript/Guide/Text_formatting")}}</div>
-<p class="summary">這個章節將介紹如何在 JavaScript 中處理數字與日期。</p>
+<p>這個章節將介紹如何在 JavaScript 中處理數字與日期。</p>
<h2 id="數字Numbers">數字(Numbers)</h2>
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>
diff --git a/files/zh-tw/web/javascript/index.html b/files/zh-tw/web/javascript/index.html
index d190bb9a0a..d8b2bffb42 100644
--- a/files/zh-tw/web/javascript/index.html
+++ b/files/zh-tw/web/javascript/index.html
@@ -10,9 +10,7 @@ translation_of: Web/JavaScript
---
<p>{{JsSidebar}}</p>
-<div class="summary">
<p><strong>JavaScript</strong> (簡稱 <strong>JS</strong>) 是具有一級函數 ({{Glossary("First-class Function", "First-class functions")}}) 的輕量級、直譯式或即時編譯(JIT-compiled)的程式語言。它因為用作網頁的腳本語言而大為知名,但也用於<a class="external" href="http://en.wikipedia.org/wiki/JavaScript#Uses_outside_web_pages">許多非瀏覽器的環境</a>,像是 <a class="external" href="http://nodejs.org/">node.js</a>、<a href="http://couchdb.apache.org">Apache CouchDB</a>。JavaScript 是一個基於原型的 ({{Glossary("Prototype-based programming", "Prototype-based")}})、多範型的、動態語言,支援物件導向、指令式以及宣告式 (如函數式程式設計) 風格。 閱讀<a href="/zh-TW/docs/Web/JavaScript/About_JavaScript" title="關於 JavaScript">關於 JavaScript</a> 以取得更多資訊。</p>
-</div>
<div>
<p>本章節主要說明 JavaScript,不涉及網頁特有項目或主機環境。有關網頁特有的 {{Glossary("API","APIs")}} ,請參考 <a href="https://developer.mozilla.org/zh-TW/docs/Web/API">Web API</a> 和 <a href="https://developer.mozilla.org/zh-TW/docs/Glossary/DOM">DOM</a>。</p>