QuestenaPractice that shows what to review next
Question 72

The variable value is null. What does the expression value?.name produce?

  1. The string name
  2. The value null
  3. A TypeError
  4. The value undefinedCorrect answer

Explanation

Optional chaining stops this property access when its left side is null and produces undefined. It does not produce null, and it does not broadly catch failures from separate expressions or from later links that were not made optional.

Continue with this test

Start practice
Question 72: The variable value is null. What does the expression… · JavaScript Fundamentals · Questena