The Object.is()
method determines whether two values are the same value.
Object.is(value1, value2);
value1
value2
A Boolean
indicating whether or not the two arguments are the same value.
Object.is()
determines whether two values are the same value. Two values are the same if one of the following holds:
undefined
null
true
or both false
This is not the same as being equal according to the ==
operator. The ==
operator applies various coercions to both sides (if they are not the same Type) before testing for equality (resulting in such behavior as "" == false
being true
), but Object.is
doesn't coerce either value.
This is also not the same as being equal according to the ===
operator. The ===
operator (and the ==
operator as well) treats the number values -0
and +0
as equal and treats Number.NaN
as not equal to NaN
.
Object.is('foo', 'foo'); // true Object.is(window, window); // true Object.is('foo', 'bar'); // false Object.is([], []); // false var test = { a: 1 }; Object.is(test, test); // true Object.is(null, null); // true // Special Cases Object.is(0, -0); // false Object.is(-0, -0); // true Object.is(NaN, 0/0); // true
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; } }; }
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Object.is' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of 'Object.is' in that specification. | Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 30 | Yes | 22 | No | Yes | 9 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 22 | Yes | 9 | Yes |
Server | |
---|---|
Node.js | |
Basic support | 0.10 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is