aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/reference/global_objects/math/pow/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/reference/global_objects/math/pow/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/reference/global_objects/math/pow/index.html')
-rw-r--r--files/zh-tw/web/javascript/reference/global_objects/math/pow/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-tw/web/javascript/reference/global_objects/math/pow/index.html b/files/zh-tw/web/javascript/reference/global_objects/math/pow/index.html
index 7119ba5862..4fedac7ef7 100644
--- a/files/zh-tw/web/javascript/reference/global_objects/math/pow/index.html
+++ b/files/zh-tw/web/javascript/reference/global_objects/math/pow/index.html
@@ -7,7 +7,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math/pow
---
<div>{{JSRef}}</div>
-<p><strong><code>Math.pow()</code></strong> 函式回傳 <code>base</code> 的 <code>exponent</code> 次方(幂)值,也就是 <code>base<sup>exponent</sup></code>。</p>
+<p><strong><code>Math.pow()</code></strong> 函式回傳 <code>base</code> 的 <code>exponent</code> 次方(幂)值,也就是 <code>base^exponent</code>。</p>
<h2 id="語法">語法</h2>
@@ -28,7 +28,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Math/pow
<h2 id="敘述">敘述</h2>
-<p>The <strong><code>Math.pow()</code></strong> function returns the <code>base</code> to the <code>exponent</code> power, that is, <code>base<sup>exponent</sup></code>, the base and the exponent are in decimal numeral system.</p>
+<p>The <strong><code>Math.pow()</code></strong> function returns the <code>base</code> to the <code>exponent</code> power, that is, <code>base^exponent</code>, the base and the exponent are in decimal numeral system.</p>
<p>由於 <code>pow()</code> 是 <code>Math</code> 的靜態方法,you always use it as <code>Math.pow()</code>, rather than as a method of a <code>Math</code> object you created(<code>Math</code> 並沒有建構子)。</p>