diff options
author | Bierxiensi <40264423+Bierxiensi@users.noreply.github.com> | 2022-01-04 02:49:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 02:49:12 +0800 |
commit | b28c6063d1f1a232760e10feae803f83bac0131c (patch) | |
tree | 530e9788d4cc9fd34512a9d4aa2c5f409c7ee209 /files/zh-cn | |
parent | c2bdd712cab987a66138da41862d7b5cb22748c8 (diff) | |
download | translated-content-b28c6063d1f1a232760e10feae803f83bac0131c.tar.gz translated-content-b28c6063d1f1a232760e10feae803f83bac0131c.tar.bz2 translated-content-b28c6063d1f1a232760e10feae803f83bac0131c.zip |
rm one dummy char (#3538)
fix translate
Diffstat (limited to 'files/zh-cn')
-rw-r--r-- | files/zh-cn/web/javascript/reference/global_objects/object/tostring/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/object/tostring/index.html b/files/zh-cn/web/javascript/reference/global_objects/object/tostring/index.html index e585abdd61..af2c721813 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/object/tostring/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/object/tostring/index.html @@ -35,7 +35,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Object/toString o.toString(); // returns [object Object] </pre> -<div class="note"><strong>注意:</strong>如的ECMAScript 5 和随后的 Errata 中所定义,从 JavaScript 1.8.5 开始,<code>toString()</code> 调用 {{jsxref("null")}} 返回<code>[object <em>Null</em>]</code>,{{jsxref("undefined")}} 返回 <code>[object Undefined]</code>。请参阅下面的{{anch("Using_toString()_to_detect_object_class", "使用 <code>toString()</code> 检测对象类型")}}。</div> +<div class="note"><strong>注意:</strong>如 ECMAScript 5 和随后的 Errata 中所定义,从 JavaScript 1.8.5 开始,<code>toString()</code> 调用 {{jsxref("null")}} 返回<code>[object <em>Null</em>]</code>,{{jsxref("undefined")}} 返回 <code>[object Undefined]</code>。请参阅下面的{{anch("Using_toString()_to_detect_object_class", "使用 <code>toString()</code> 检测对象类型")}}。</div> <h2 id="示例">示例</h2> |