aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/operators/less_than/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/operators/less_than/index.html')
-rw-r--r--files/zh-cn/web/javascript/reference/operators/less_than/index.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/files/zh-cn/web/javascript/reference/operators/less_than/index.html b/files/zh-cn/web/javascript/reference/operators/less_than/index.html
index 1a33554b98..d98a89f03c 100644
--- a/files/zh-cn/web/javascript/reference/operators/less_than/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/less_than/index.html
@@ -13,7 +13,7 @@ translation_of: Web/JavaScript/Reference/Operators/Less_than
<h2 id="语法">语法</h2>
-<pre class="syntaxbox notranslate"> x &lt; y</pre>
+<pre class="syntaxbox"> x &lt; y</pre>
<h2 id="Description">Description</h2>
@@ -38,13 +38,13 @@ translation_of: Web/JavaScript/Reference/Operators/Less_than
<h3 id="String_to_string_comparison">String to string comparison</h3>
-<pre class="brush: js notranslate">console.log("a" &lt; "b"); // true
+<pre class="brush: js">console.log("a" &lt; "b"); // true
console.log("a" &lt; "a"); // false
console.log("a" &lt; "3"); // false</pre>
<h3 id="String_to_number_comparison">String to number comparison</h3>
-<pre class="brush: js notranslate">console.log("5" &lt; 3); // false
+<pre class="brush: js">console.log("5" &lt; 3); // false
console.log("3" &lt; 3); // false
console.log("3" &lt; 5); // true
@@ -56,18 +56,18 @@ console.log("3" &lt; 5n); // true</pre>
<h3 id="Number_to_Number_comparison">Number to Number comparison</h3>
-<pre class="brush: js notranslate">console.log(5 &lt; 3); // false
+<pre class="brush: js">console.log(5 &lt; 3); // false
console.log(3 &lt; 3); // false
console.log(3 &lt; 5); // true</pre>
<h3 id="Number_to_BigInt_comparison">Number to BigInt comparison</h3>
-<pre class="brush: js notranslate">console.log(5n &lt; 3); // false
+<pre class="brush: js">console.log(5n &lt; 3); // false
console.log(3 &lt; 5n); // true</pre>
<h3 id="Comparing_Boolean_null_undefined_NaN">Comparing Boolean, null, undefined, NaN</h3>
-<pre class="brush: js notranslate">console.log(true &lt; false); // false
+<pre class="brush: js">console.log(true &lt; false); // false
console.log(false &lt; true); // true
console.log(0 &lt; true); // true