Which pair of results is produced by Object.is(NaN, NaN) and Object.is(0, -0), respectively?
Explanation
Object.is regards NaN as the same as itself and distinguishes positive zero from negative zero. Strict equality behaves differently in both special cases, so using its outcomes here would reverse the pair.