aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:07 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commit7a9db40025c2f387b4b75b4bd0d32a18a63c0d87 (patch)
tree50feb9ad77553c9b6737807fc5623ff9173d682e /files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
parentc40612041809fe289aba58aefa170bbe784aba1f (diff)
downloadtranslated-content-7a9db40025c2f387b4b75b4bd0d32a18a63c0d87.tar.gz
translated-content-7a9db40025c2f387b4b75b4bd0d32a18a63c0d87.tar.bz2
translated-content-7a9db40025c2f387b4b75b4bd0d32a18a63c0d87.zip
remove sup tag for zh-TW
Diffstat (limited to 'files/zh-tw/web/javascript/guide/expressions_and_operators/index.html')
-rw-r--r--files/zh-tw/web/javascript/guide/expressions_and_operators/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html b/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
index df48ec6e8f..4e0c8655bc 100644
--- a/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
+++ b/files/zh-tw/web/javascript/guide/expressions_and_operators/index.html
@@ -264,7 +264,7 @@ var var2 = 4;
</tr>
<tr>
<td><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Exponentiation">指數運算子</a> (<code>**</code>) {{experimental_inline}}</td>
- <td>計算以 a 為底的 <code>b</code> 次方, 也就是, a<code><sup>b</sup></code></td>
+ <td>計算以 a 為底的 <code>b</code> 次方, 也就是, <code>a^b</code></td>
<td><code>2 ** 3</code> <code>回傳 8</code>.<br>
<code>10 ** -1</code> 回傳 <code>0.1</code>.</td>
</tr>