What will be the output of the following JavaScript snippet?
console.log("5" + 3);
नीचे दिए गए JavaScript स्निपेट का आउटपुट क्या होगा?
A. 53
B. 8
C. 2
D. Error
"5" is a string.
3 is a number.
When the + operator is used with a string, JavaScript performs string concatenation instead of numeric addition.
The number 3 is automatically converted to the string "3".