QuestenaPractice that shows what to review next
Question 79

The function label is written as (value = "new") => value. Which pair of call results is correct?

  1. label(undefined) gives undefined; label(null) gives new
  2. label(undefined) gives new; label(null) gives new
  3. label(undefined) gives new; label(null) gives nullCorrect answer
  4. Both calls throw because defaults require no argument syntax

Explanation

A default initializer is selected for a missing argument or one explicitly equal to undefined, so label(undefined) gives new. Passing null supplies an actual argument, so label(null) preserves null rather than treating it as absent.

Continue with this test

Start practice
Question 79: The function label is written as (value = "new") => value.… · JavaScript Fundamentals · Questena