aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/math/fround
diff options
context:
space:
mode:
authort7yang <t7yang@gmail.com>2022-01-10 08:38:08 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commite983b2b1955dfcf865421251a1fad00a6ccd5196 (patch)
tree792e047cba454c4010fc0b153edcc276b5cb7a77 /files/zh-cn/web/javascript/reference/global_objects/math/fround
parent7a9db40025c2f387b4b75b4bd0d32a18a63c0d87 (diff)
downloadtranslated-content-e983b2b1955dfcf865421251a1fad00a6ccd5196.tar.gz
translated-content-e983b2b1955dfcf865421251a1fad00a6ccd5196.tar.bz2
translated-content-e983b2b1955dfcf865421251a1fad00a6ccd5196.zip
remove sup tag for zh-CN
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/math/fround')
-rw-r--r--files/zh-cn/web/javascript/reference/global_objects/math/fround/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/math/fround/index.html b/files/zh-cn/web/javascript/reference/global_objects/math/fround/index.html
index b4790b6448..630c3b5d1c 100644
--- a/files/zh-cn/web/javascript/reference/global_objects/math/fround/index.html
+++ b/files/zh-cn/web/javascript/reference/global_objects/math/fround/index.html
@@ -47,7 +47,7 @@ Math.fround(1.5) === 1.5; // true</pre>
Math.fround(1.337) === 1.337; // false
</pre>
-<p>2<sup>150</sup> 超出32位浮点,所以返回<code>Infinity</code>:</p>
+<p>2^150 超出32位浮点,所以返回<code>Infinity</code>:</p>
<pre class="brush: js">2 ** 150; // 1.42724769270596e+45
Math.fround(2 ** 150); // Infinity