--- title: Object.is() slug: Web/JavaScript/Reference/Global_Objects/Object/is tags: - ECMAScript 2015 - JavaScript - 判断 - 对象 - 方法 - 相等 translation_of: Web/JavaScript/Reference/Global_Objects/Object/is ---
Object.is()
方法判断两个值是否为同一个值。
语法
Object.is(value1, value2);
value1
value2
一个 {{jsxref("Boolean")}} 类型标示两个参数是否是同一个值。
Object.is()
方法判断两个值是否为同一个值。如果满足以下条件则两个值相等:
true
或 false
+0
-0
与{{jsxref("Operators/Comparison_Operators", "==", "#Equality")}} 运算不同。 ==
运算符在判断相等前对两边的变量(如果它们不是同一类型) 进行强制转换 (这种行为的结果会将 "" == false
判断为 true
), 而 Object.is
不会强制转换两边的值。
与{{jsxref("Operators/Comparison_Operators", "===", "#Identity")}} 运算也不相同。 ===
运算符 (也包括 ==
运算符) 将数字 -0
和 +0
视为相等 ,而将{{jsxref("Number.NaN")}} 与{{jsxref("NaN")}}视为不相等.
if (!Object.is) { Object.is = function(x, y) { // SameValue algorithm if (x === y) { // Steps 1-5, 7-10 // Steps 6.b-6.e: +0 != -0 return x !== 0 || 1 / x === 1 / y; } else { // Step 6.a: NaN == NaN return x !== x && y !== y; } }; }
规范 | 状态 | 备注 |
---|---|---|
{{SpecName('ES2015', '#sec-object.is', 'Object.is')}} | {{Spec2('ES2015')}} | Initial definition. |
{{SpecName('ESDraft', '#sec-object.is', 'Object.is')}} | {{Spec2('ESDraft')}} |
Object.is('foo', 'foo'); // true Object.is(window, window); // true Object.is('foo', 'bar'); // false Object.is([], []); // false var foo = { a: 1 }; var bar = { a: 1 }; Object.is(foo, foo); // true Object.is(foo, bar); // false Object.is(null, null); // true // 特例 Object.is(0, -0); // false Object.is(0, +0); // true Object.is(-0, -0); // true Object.is(NaN, 0/0); // true
规范
Specification |
---|
{{SpecName('ESDraft', '#sec-object.is', 'Object.is')}} |
{{Compat("javascript.builtins.Object.is")}}