3.
What is the result of the following expression: 5 + "10"?
510
"15"
50
"510"
Correct: D
When a number is added to a string in JavaScript, the number is converted to a string and concatenated with the other string. In this case, 5 is converted to the string "5" and then concatenated with "10", resulting in "510".