Q. What is the result of 2 + '2'?
β
Correct Answer: (A)
22
Explanation: JavaScript converts 2 to a string and concatenates: '2' + '2'.