QuestenaPractice that shows what to review next
Question 110

The variable count holds the number 3. What error type results from evaluating count()?

  1. ReferenceError
  2. TypeErrorCorrect answer
  3. SyntaxError
  4. No error; the call returns 3

Explanation

A Number value is not callable, so attempting to invoke count throws a TypeError. The name itself resolves successfully, which rules out an unresolved-name failure; the problem is the value's inability to be called.

Continue with this test

Start practice
Question 110: The variable count holds the number 3. What error type… · JavaScript Fundamentals · Questena