diff options
author | t7yang <t7yang@gmail.com> | 2022-01-10 08:38:04 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2022-02-16 02:35:54 +0800 |
commit | 7c2556fe79c44d7c31108b8c8b048d2b7704a95e (patch) | |
tree | cb64f8749da725612d3dc9cf95943d0fc40add79 /files/zh-tw/web/javascript/reference/global_objects/array/join/index.html | |
parent | ba64b95982c1b53696644a033accf800a4e82c09 (diff) | |
download | translated-content-7c2556fe79c44d7c31108b8c8b048d2b7704a95e.tar.gz translated-content-7c2556fe79c44d7c31108b8c8b048d2b7704a95e.tar.bz2 translated-content-7c2556fe79c44d7c31108b8c8b048d2b7704a95e.zip |
remove span tag in zh-TW
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.html | 2 |
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" |