30秒学会 JavaScript 片段 · 2023年8月17日

30秒学会 JavaScript 片段 – What’s the difference between Object.is() and the triple equals operator in JavaScript?

If you want to check equality in JavaScript, there are two comparison operators, which are explained in depth in a previous article.

Very briefly, the double equals operator (==) only compares value whereas the triple equals operator (===) compares both value and type. But there is also a third option, Object.is(), which behaves the same as the triple equals operator with the exception of NaN and +0 and -0.

Here are some examples for additional clarity:

代码实现

{} === {}; // false
Object.is({}, {}); // false

1 === 1; // true
Object.is(1, 1); // true

+0 === -0; // true
Object.is(+0, -0); // false

NaN === NaN; // false
Object.is(NaN, NaN); // true

翻译自:https://www.30secondsofcode.org/js/s/object-is-triple-equals