Q. What does the following return?
Code:
[] == ![];
β
Correct Answer: (A)
true
Explanation: [] is truthy, ![] is false. [] == false is true due to coercion.