From 01b0e12ba27b5069248fd09235e9a7143915ee30 Mon Sep 17 00:00:00 2001 From: Irvin Date: Wed, 16 Feb 2022 02:02:49 +0800 Subject: remove `notranslate` class in zh-CN --- .../web/javascript/reference/operators/right_shift/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'files/zh-cn/web/javascript/reference/operators/right_shift') diff --git a/files/zh-cn/web/javascript/reference/operators/right_shift/index.html b/files/zh-cn/web/javascript/reference/operators/right_shift/index.html index f049a499a9..583da5cafe 100644 --- a/files/zh-cn/web/javascript/reference/operators/right_shift/index.html +++ b/files/zh-cn/web/javascript/reference/operators/right_shift/index.html @@ -13,7 +13,7 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift

语法

-
a >> b
+
a >> b
 

Description

@@ -22,14 +22,14 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift

For example, 9 >> 2 yields 2:

-
.    9 (base 10): 00000000000000000000000000001001 (base 2)
+
.    9 (base 10): 00000000000000000000000000001001 (base 2)
                   --------------------------------
 9 >> 2 (base 10): 00000000000000000000000000000010 (base 2) = 2 (base 10)
 

Likewise, -9 >> 2 yields -3, because the sign is preserved:

-
.    -9 (base 10): 11111111111111111111111111110111 (base 2)
+
.    -9 (base 10): 11111111111111111111111111110111 (base 2)
                    --------------------------------
 -9 >> 2 (base 10): 11111111111111111111111111111101 (base 2) = -3 (base 10)
 
@@ -38,7 +38,7 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift

Using right shift

-
 9 >> 2; //  2
+
 9 >> 2; //  2
 -9 >> 2; // -3
 
-- cgit v1.2.3-54-g00ecf