Which call returns true under the non-coercing rules of Number.isNaN?
Explanation
Number.isNaN returns true only when its argument is already the Number value NaN, so Number.isNaN(NaN) succeeds. It does not coerce the string hello or undefined before testing, unlike the coercing behavior associated with the global isNaN function.