aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference/operators
diff options
context:
space:
mode:
authorwildskyf <poppin.wildsky+gh@gmail.com>2021-04-14 17:40:06 +0800
committerIrvin <irvinfly@gmail.com>2021-04-14 18:08:04 +0800
commitcc03ce3d7332457067e320d182307a3fc7285a4e (patch)
tree9ea2448d0f2c3d84383d3d7780d88b637c2fc70f /files/zh-tw/web/javascript/reference/operators
parentdb26cf86829f9b43d29f18b9bbf197e9e2d55c31 (diff)
downloadtranslated-content-cc03ce3d7332457067e320d182307a3fc7285a4e.tar.gz
translated-content-cc03ce3d7332457067e320d182307a3fc7285a4e.tar.bz2
translated-content-cc03ce3d7332457067e320d182307a3fc7285a4e.zip
remove useless dir="rtl" for zh-TW
Diffstat (limited to 'files/zh-tw/web/javascript/reference/operators')
-rw-r--r--files/zh-tw/web/javascript/reference/operators/this/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/web/javascript/reference/operators/this/index.html b/files/zh-tw/web/javascript/reference/operators/this/index.html
index e26b592244..503ef720e4 100644
--- a/files/zh-tw/web/javascript/reference/operators/this/index.html
+++ b/files/zh-tw/web/javascript/reference/operators/this/index.html
@@ -71,7 +71,7 @@ f2() === undefined; //true</pre>
<p>要從某個語境訪問另一個 <code>this</code> 語境的值,請使用 <a href="/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Function/call">call</a> 或 <a href="/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Function/apply">apply</a>:</p>
-<pre dir="rtl">// 物件可以被當作call或apply的第一個參數,而this會綁定該物件
+<pre>// 物件可以被當作call或apply的第一個參數,而this會綁定該物件
var obj = {a: 'Custom'};
// 此屬性a為全域物件