aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/operators/right_shift_assignment
diff options
context:
space:
mode:
authorIrvin <irvinfly@gmail.com>2022-02-16 02:02:49 +0800
committerIrvin <irvinfly@gmail.com>2022-02-16 02:35:54 +0800
commit01b0e12ba27b5069248fd09235e9a7143915ee30 (patch)
tree0e9edf538dc3fa3331e1dbb79239b58186765f86 /files/zh-cn/web/javascript/reference/operators/right_shift_assignment
parent6ca84f1794af830ada9736d7289ce29aabb04ca3 (diff)
downloadtranslated-content-01b0e12ba27b5069248fd09235e9a7143915ee30.tar.gz
translated-content-01b0e12ba27b5069248fd09235e9a7143915ee30.tar.bz2
translated-content-01b0e12ba27b5069248fd09235e9a7143915ee30.zip
remove `notranslate` class in zh-CN
Diffstat (limited to 'files/zh-cn/web/javascript/reference/operators/right_shift_assignment')
-rw-r--r--files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html
index f9e8b3c8c4..0ebfbbd51e 100644
--- a/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/right_shift_assignment/index.html
@@ -15,14 +15,14 @@ translation_of: Web/JavaScript/Reference/Operators/Right_shift_assignment
<h2 id="语法">语法</h2>
-<pre class="syntaxbox notranslate"><strong>Operator:</strong> x &gt;&gt;= y
+<pre class="syntaxbox"><strong>Operator:</strong> x &gt;&gt;= y
<strong>Meaning:</strong> x = x &gt;&gt; y</pre>
<h2 id="Examples">Examples</h2>
<h3 id="Using_right_shift_assignment">Using right shift assignment</h3>
-<pre class="brush: js notranslate">let a = 5; // (00000000000000000000000000000101)
+<pre class="brush: js">let a = 5; // (00000000000000000000000000000101)
a &gt;&gt;= 2; // 1 (00000000000000000000000000000001)
let b = -5; // (-00000000000000000000000000000101)