QuestenaPractice that shows what to review next
Question 118

Which statements describe Number("hello")? Select all that apply.

  1. The result is undefined
  2. The result is NaNCorrect answer
  3. The result is zero
  4. The conversion does not throw an exceptionCorrect answer

Explanation

The text hello has no valid numeric interpretation for Number conversion, so the result is the Number value NaN. The conversion itself completes without throwing; returning zero would describe a different input case such as an empty string.

Continue with this test

Start practice
Question 118: Which statements describe Number("hello")? Select all that… · JavaScript Fundamentals · Questena