From e983b2b1955dfcf865421251a1fad00a6ccd5196 Mon Sep 17 00:00:00 2001 From: t7yang Date: Mon, 10 Jan 2022 08:38:08 +0800 Subject: remove sup tag for zh-CN --- files/zh-cn/web/javascript/reference/operators/bitwise_not/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'files/zh-cn/web/javascript/reference/operators/bitwise_not') 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

按位非运算时,任何数字x的运算结果都是-(x + 1)。例如,〜-5运算结果为4

-

Note that due to using 32-bit representation for numbers both ~-1 and ~4294967295 (232-1) results in 0.

+

Note that due to using 32-bit representation for numbers both ~-1 and ~4294967295 (2^32 - 1) results in 0.

-

请注意,由于对数字~-1~4294967295 (232-1) 使用32位表示形式,结果均为0。

+

请注意,由于对数字~-1~4294967295 (2^32 - 1) 使用32位表示形式,结果均为0。

例子

-- cgit v1.2.3-54-g00ecf