1.
What is the result of 5 + 3 in JavaScript?
2.
What does '5' + '3' evaluate to in JavaScript?
3.
How does JavaScript handle the expression 5 + '3'?
4.
What will be the output of 5 + 3 + ' apples' in JavaScript?
5.
How do you concatenate two strings in JavaScript?
6.
What does '5' + 3 evaluate to in JavaScript?
7.
How do you add a number and a string in JavaScript to get a numeric result?
8.
What is the result of '5' + true in JavaScript?
9.
How do you convert a string to a number in JavaScript before adding it to another number?
10.
What does 'apple' + 5 evaluate to in JavaScript?