Answer & Solution
Answer: Option B
Solution:
The output will be "22". In JavaScript, when you use the + operator with strings, it concatenates them. So, 2 + 2 results in 4, and then "4" + "2" results in "42".