aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference/global_objects/array
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-tw/web/javascript/reference/global_objects/array')
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/array/join/index.html2
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/array/map/index.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html b/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html
index 0beaecebdd..a43360caf5 100644
--- a/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html
+++ b/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html
@@ -54,7 +54,7 @@ a.join(''); // 'WindRainFire'</pre>
<pre class="brush: js">function f(a, b, c) {
var s = Array.prototype.join.call(arguments);
- console.log(s); // '<span class="message-body-wrapper"><span class="message-flex-body"><span class="devtools-monospace message-body"><span class="objectBox objectBox-string">1,a,true'</span></span></span></span>
+ console.log(s); // '1,a,true'
}
f(1, 'a', true);
//expected output: "1,a,true"
diff --git a/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html b/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html
index d1838ce6ae..c87fa95064 100644
--- a/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html
+++ b/files/zh-tw/web/javascript/reference/global_objects/array/map/index.html
@@ -15,7 +15,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Array/map
---
<div>{{JSRef}}</div>
-<p><span class="seoSummary"><code><strong>map()</strong></code> 方法會建立一個新的陣列,其內容為原陣列的每一個元素經由回呼函式運算後所回傳的結果之集合。</span></p>
+<p><code><strong>map()</strong></code> 方法會建立一個新的陣列,其內容為原陣列的每一個元素經由回呼函式運算後所回傳的結果之集合。</p>
<div>{{EmbedInteractiveExample("pages/js/array-map.html")}}</div>