Computer Science, asked by deepardivya, 9 hours ago

3 of 4
What is the output of 2 + 5 + "3"
in JavaScript?
10
253
73
None of the options are correct​

Answers

Answered by rjmalli123
4

Answer:

10

Explanation:

add all these numbers

Answered by unnatiknl999
4

Answer:

73

Explanation:

Because compiler firstly treat 2+5 as an integer or a addition symbol

then "3" is treated as string and + is treated as concatination  symbol.

That's  why the answer is 73.

Similar questions