Javascript
Apr 8, 2026
What does this output?
console.log([] + [])
The Correct Answer
C
Explanation
Both arrays convert to empty strings via toString(). "" + "" = "".