aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference/global_objects/array/join/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-tw/web/javascript/reference/global_objects/array/join/index.html')
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/array/join/index.html2
1 files changed, 1 insertions, 1 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"