aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/operators/right_shift/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/operators/right_shift/index.html')
-rw-r--r--files/zh-cn/web/javascript/reference/operators/right_shift/index.html8
1 files changed, 4 insertions, 4 deletions
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
<h2 id="语法">语法</h2>
-<pre class="syntaxbox notranslate"><code><var>a</var> &gt;&gt; <var>b</var></code>
+<pre class="syntaxbox"><code><var>a</var> &gt;&gt; <var>b</var></code>
</pre>
<h2 id="Description">Description</h2>
@@ -22,14 +22,14 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift
<p>For example, <code>9 &gt;&gt; 2</code> yields 2:</p>
-<pre class="brush: js notranslate">. 9 (base 10): 00000000000000000000000000001001 (base 2)
+<pre class="brush: js">. 9 (base 10): 00000000000000000000000000001001 (base 2)
--------------------------------
9 &gt;&gt; 2 (base 10): 00000000000000000000000000000010 (base 2) = 2 (base 10)
</pre>
<p>Likewise, <code>-9 &gt;&gt; 2</code> yields <code>-3</code>, because the sign is preserved:</p>
-<pre class="brush: js notranslate">. -9 (base 10): 11111111111111111111111111110111 (base 2)
+<pre class="brush: js">. -9 (base 10): 11111111111111111111111111110111 (base 2)
--------------------------------
-9 &gt;&gt; 2 (base 10): 11111111111111111111111111111101 (base 2) = -3 (base 10)
</pre>
@@ -38,7 +38,7 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift
<h3 id="Using_right_shift">Using right shift</h3>
-<pre class="brush: js notranslate"> 9 &gt;&gt; 2; // 2
+<pre class="brush: js"> 9 &gt;&gt; 2; // 2
-9 &gt;&gt; 2; // -3
</pre>