11.
What is the result of 5 + null in JavaScript?
12.
How does JavaScript handle the expression 5 + undefined?
13.
What is the output of 5 + NaN in JavaScript?
14.
How do you concatenate multiple strings and a number in JavaScript?
15.
What will be the output of 5 + ' apples' + 3 in JavaScript?
16.
What does '5' + undefined evaluate to in JavaScript?
17.
How do you convert a string to a number in JavaScript using the + operator?
18.
What is the result of '5' + '3' + 2 in JavaScript?
19.
How do you add a number and a string in JavaScript to get a string result?
20.
What will be the output of 'apple' + null in JavaScript?