QuestenaPractice that shows what to review next
Question 23

If value is the empty string, what is the result of !!value?

  1. falseCorrect answer
  2. true
  3. the empty string
  4. undefined

Explanation

The first negation converts the empty string to boolean and reverses its falsy value; the second reverses that boolean again. The final result is the boolean false, not the original string.

Continue with this test

Start practice
Question 23: If value is the empty string, what is the result of !!value? · JavaScript Fundamentals · Questena