Answers

Question and Answer:

  Home  Expert JavaScript Developer

⟩ What would "1"+2+3 and 1+2+"3" evaluate to, respectively?

When the first character is a string, the remaining characters will be converted into a single string, rendering 123.

If the string is at the end, the initial characters will perform normal mathematical functions before converting into a string, resulting in 33.

 214 views

More Questions for you: