aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference
diff options
context:
space:
mode:
authorChris Huang <chris820702@gmail.com>2021-05-08 01:10:10 +0800
committerGitHub <noreply@github.com>2021-05-08 01:10:10 +0800
commit9b8c1a3b9950f9d8a998baaaa0e7b5f63c713cc3 (patch)
treec91e8408ad40bbd2f921ec580f5cfca02295da00 /files/zh-tw/web/javascript/reference
parent7c5f58db81ac22c12c10719ed9203923c807cbad (diff)
downloadtranslated-content-9b8c1a3b9950f9d8a998baaaa0e7b5f63c713cc3.tar.gz
translated-content-9b8c1a3b9950f9d8a998baaaa0e7b5f63c713cc3.tar.bz2
translated-content-9b8c1a3b9950f9d8a998baaaa0e7b5f63c713cc3.zip
Update /web/javascript/reference/global_objects/array/tostring, zh-TW (#783)
Diffstat (limited to 'files/zh-tw/web/javascript/reference')
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/array/tostring/index.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/files/zh-tw/web/javascript/reference/global_objects/array/tostring/index.html b/files/zh-tw/web/javascript/reference/global_objects/array/tostring/index.html
new file mode 100644
index 0000000000..b56586ac1a
--- /dev/null
+++ b/files/zh-tw/web/javascript/reference/global_objects/array/tostring/index.html
@@ -0,0 +1,66 @@
+---
+title: Array.prototype.toString()
+slug: Web/JavaScript/Reference/Global_Objects/Array/toString
+tags:
+- Array
+- JavaScript
+- Method
+- Prototype
+browser-compat: javascript.builtins.Array.toString
+---
+<div>{{JSRef}}</div>
+
+<p><code><strong>toString()</strong></code> 方法將回傳一個可以表達該陣列及其元素的字串。 </p>
+
+<div>{{EmbedInteractiveExample("pages/js/array-tostring.html","shorter")}}</div>
+
+<h2 id="Syntax">語法</h2>
+
+<pre class="brush: js">toString()</pre>
+
+<h3 id="Return_value">回傳值</h3>
+
+<p>一個表達該陣列及該陣列中元素的字串。</p>
+
+<h2 id="Description">描述</h2>
+
+<p>
+ {{jsxref("Array")}} 覆寫了 {{jsxref("Object")}} 中的 <code>toString</code> 方法。
+ 陣列的 <code>toString</code> 方法會將陣列中的每個元素用逗號串接起來成為一個字串,並回傳該字串。
+</p>
+
+<p>
+ 當你在會以文字型態表示的地方使用了陣列,或是在字串的串接中使用到了陣列,JavaScript 會自動為該陣列使用<code>toString</code> 方法。
+</p>
+
+<h3 id="ECMAScript_5_semantics">ECMAScript 5 語義</h3>
+
+<p>
+ 始於 JavaScript 1.8.5 (Firefox 4),並且和 ECMAScript 5 的語義一致。
+ <code>toString()</code> 方法是通用的,任何的物件都可以使用。 {{jsxref("Object.prototype.toString()")}} 會被呼叫,並回傳結果。
+</p>
+
+<h2 id="Examples">範例</h2>
+
+<h3 id="Using_toString">如何使用 toString</h3>
+
+<pre class="brush: js">const array1 = [1, 2, 'a', '1a'];
+
+console.log(array1.toString());
+// expected output: "1,2,a,1a"
+</pre>
+
+<h2 id="Specifications">規格</h2>
+
+{{Specifications}}
+
+<h2 id="Browser_compatibility">瀏覽器相容性</h2>
+
+<p>{{Compat}}</p>
+
+<h2 id="See_also">參見</h2>
+
+<ul>
+ <li>{{jsxref("Array.prototype.join()")}}</li>
+ <li>{{jsxref("Object.prototype.toSource()")}}</li>
+</ul>