aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/guide
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
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')
-rw-r--r--files/zh-tw/web/javascript/guide/expressions_and_operators/index.html2
-rw-r--r--files/zh-tw/web/javascript/guide/numbers_and_dates/index.html2
2 files changed, 2 insertions, 2 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>
diff --git a/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html b/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html
index d41f3f16b4..890f62f231 100644
--- a/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html
+++ b/files/zh-tw/web/javascript/guide/numbers_and_dates/index.html
@@ -9,7 +9,7 @@ translation_of: Web/JavaScript/Guide/Numbers_and_dates
<h2 id="數字Numbers">數字(Numbers)</h2>
-<p>在 JavaScript 中, Number所使用的標準依照 <a class="external external-icon" href="https://en.wikipedia.org/wiki/Double-precision_floating-point_format">double-precision 64-bit binary format IEEE 754</a> (i.e. number的區間是 -(2<sup>53</sup> -1) 到 2<sup>53</sup> -1)。<strong>整數是沒有特定的類型</strong>。</p>
+<p>在 JavaScript 中, Number所使用的標準依照 <a class="external external-icon" href="https://en.wikipedia.org/wiki/Double-precision_floating-point_format">double-precision 64-bit binary format IEEE 754</a> (i.e. number的區間是 -(2^53 -1) 到 2^53 -1)。<strong>整數是沒有特定的類型</strong>。</p>
<p>此外還可以顯示浮點數,三種符號數值: <code>+</code>{{jsxref("Infinity")}}, <code>-</code>{{jsxref("Infinity")}}, and {{jsxref("NaN")}} (not-a-number)。</p>