What will be the
output of the above line of code?
Answers:-
As you know in JavaScript, when the “first character” is a “string”
the remaining characters will be converted into a “single string” that means
the output of “1”+2+3 will be 123.
If the “string”
is at the end the initial characters will perform normal mathematical functions
before converting into a “string”, that means the output of 1+2+“3” will be 33.