Q. What will this return?
Code:console.log('10' - '4' - '3' - 2 + '5');
β
Correct Answer: (C)
15
Explanation: '10' - '4' - '3' - 2 = 1, then 1 + '5' = '15'.