diff options
author | t7yang <t7yang@gmail.com> | 2022-01-10 08:38:08 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2022-02-16 02:35:54 +0800 |
commit | e983b2b1955dfcf865421251a1fad00a6ccd5196 (patch) | |
tree | 792e047cba454c4010fc0b153edcc276b5cb7a77 /files/zh-cn/web/javascript/reference/operators | |
parent | 7a9db40025c2f387b4b75b4bd0d32a18a63c0d87 (diff) | |
download | translated-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/operators')
-rw-r--r-- | files/zh-cn/web/javascript/reference/operators/bitwise_not/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/javascript/reference/operators/bitwise_not/index.html b/files/zh-cn/web/javascript/reference/operators/bitwise_not/index.html index 416bb69347..46ffd369dd 100644 --- a/files/zh-cn/web/javascript/reference/operators/bitwise_not/index.html +++ b/files/zh-cn/web/javascript/reference/operators/bitwise_not/index.html @@ -61,9 +61,9 @@ After: 10100000000000000110000000000001</pre> <p>按位非运算时,任何数字<code>x的运算结果都是</code><code>-(x + 1)</code>。例如,<code>〜-5</code>运算结果为<code>4</code>。</p> -<p>Note that due to using 32-bit representation for numbers both <code>~-1</code> and <code>~4294967295</code> (2<sup>32</sup>-1) results in <code>0</code>.</p> +<p>Note that due to using 32-bit representation for numbers both <code>~-1</code> and <code>~4294967295</code> (2^32 - 1) results in <code>0</code>.</p> -<p>请注意,由于对数字<code>~-1</code>和<code>~4294967295</code> (2<sup>32</sup>-1) 使用32位表示形式,结果均为0。</p> +<p>请注意,由于对数字<code>~-1</code>和<code>~4294967295</code> (2^32 - 1) 使用32位表示形式,结果均为0。</p> <h2 id="例子">例子</h2> |