# Object.is()
Object.is()
Even stricter than ===
. That is useful involves NAN === NAN
Object.is(NaN, NaN);
// true
NAN === NAN;
//false
1
2
3
4
5
2
3
4
5
Object.is()
Even stricter than ===
. That is useful involves NAN === NAN
Object.is(NaN, NaN);
// true
NAN === NAN;
//false