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/strict_equality/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'files/zh-cn/web/javascript/reference/operators/strict_equality') diff --git a/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html b/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html index 125b67c168..1b8211841a 100644 --- a/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html +++ b/files/zh-cn/web/javascript/reference/operators/strict_equality/index.html @@ -13,7 +13,7 @@ translation_of: Web/JavaScript/Reference/Operators/Strict_equality

语法

-
x === y
+
x === y

描述

@@ -39,7 +39,7 @@ translation_of: Web/JavaScript/Reference/Operators/Strict_equality

比较相同类型的操作数

-
console.log("hello" === "hello");   // true
+
console.log("hello" === "hello");   // true
 console.log("hello" === "hola");    // false
 
 console.log(3 === 3);               // true
@@ -52,7 +52,7 @@ console.log(null === null);         // true

比较不同类型的操作数

-
console.log("3" === 3);           // false
+
console.log("3" === 3);           // false
 
 console.log(true === 1);          // false
 
@@ -60,7 +60,7 @@ console.log(null === undefined);  // false

比较对象

-
const object1 = {
+
const object1 = {
   name: "hello"
 }
 
-- 
cgit v1.2.3-54-g00ecf