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/global_objects/object/is/index.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'files/zh-cn/web/javascript/reference/global_objects/object/is')
diff --git a/files/zh-cn/web/javascript/reference/global_objects/object/is/index.html b/files/zh-cn/web/javascript/reference/global_objects/object/is/index.html
index 9c3aff1abd..04a528b7b8 100644
--- a/files/zh-cn/web/javascript/reference/global_objects/object/is/index.html
+++ b/files/zh-cn/web/javascript/reference/global_objects/object/is/index.html
@@ -17,7 +17,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Object/is
语法
-
Object.is(value1, value2);
+
Object.is(value1, value2);
参数
@@ -59,7 +59,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Object/is
Polyfill
-if (!Object.is) {
+if (!Object.is) {
Object.is = function(x, y) {
// SameValue algorithm
if (x === y) { // Steps 1-5, 7-10
@@ -99,7 +99,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Object/is
使用 Object.is
-Object.is('foo', 'foo'); // true
+Object.is('foo', 'foo'); // true
Object.is(window, window); // true
Object.is('foo', 'bar'); // false
--
cgit v1.2.3-54-g00ecf