aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/zh-tw/web/javascript/guide/functions/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-tw/web/javascript/guide/functions/index.html b/files/zh-tw/web/javascript/guide/functions/index.html
index 3f5d7fd370..f71ccfa1e9 100644
--- a/files/zh-tw/web/javascript/guide/functions/index.html
+++ b/files/zh-tw/web/javascript/guide/functions/index.html
@@ -73,9 +73,9 @@ y = mycar.make; // y 的值還是 "Honda" </pre>
var x = square(4) //x 的值為 16</pre>
<div class="almost_half_cell" id="gt-res-content">
-<div dir="ltr">必要時,函式名稱可與函式表達式同時存在,並且可以用於在函式內部代指其本身(遞迴):</div>
+<div>必要時,函式名稱可與函式表達式同時存在,並且可以用於在函式內部代指其本身(遞迴):</div>
-<div dir="ltr"> </div>
+<div> </div>
</div>
<pre class="brush: js">var factorial = function fac(n) {return n&lt;2 ? 1 : n*fac(n-1)};