Q. What is the output of: console.log('5' + 3);
β
Correct Answer: (B)
53
Explanation: The + operator with a string and number results in string concatenation, so '5' + 3 = '53'.