aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/operators/remainder
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/remainder
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/remainder')
-rw-r--r--files/zh-cn/web/javascript/reference/operators/remainder/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/zh-cn/web/javascript/reference/operators/remainder/index.html b/files/zh-cn/web/javascript/reference/operators/remainder/index.html
index f09292e4ff..a2d1e19fa6 100644
--- a/files/zh-cn/web/javascript/reference/operators/remainder/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/remainder/index.html
@@ -21,14 +21,14 @@ original_slug: Web/JavaScript/Reference/Operators/取余
<h2 id="语法">语法</h2>
-<pre class="syntaxbox notranslate"><strong>Operator:</strong> <var>var1</var> % <var>var2</var>
+<pre class="syntaxbox"><strong>Operator:</strong> <var>var1</var> % <var>var2</var>
</pre>
<h2 id="示例">示例</h2>
<h3 id="被除数为正数">被除数为正数</h3>
-<pre class="brush: js notranslate"> 12 % 5 // 2
+<pre class="brush: js"> 12 % 5 // 2
1 % -2 // 1
1 % 2 // 1
2 % 3 // 2
@@ -37,13 +37,13 @@ original_slug: Web/JavaScript/Reference/Operators/取余
<h3 id="被除数为负数">被除数为负数</h3>
-<pre class="brush: js notranslate">-12 % 5 // -2
+<pre class="brush: js">-12 % 5 // -2
-1 % 2 // -1
-4 % 2 // -0</pre>
<h3 id="被除数为NaN">被除数为NaN</h3>
-<pre class="brush: js notranslate">NaN % 2 // NaN</pre>
+<pre class="brush: js">NaN % 2 // NaN</pre>
<h2 id="规范">规范</h2>