Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
alert(5+'5')   \\ 55
alert(5-'5')   \\ 0

What is going here?

Thanks in advance...

share|improve this question
+1 for, i was not aware about "alert(5-'5') \\ 0", really weird – Amit Mar 2 '12 at 10:14
@Amit Yes, javascript is full of shocks. Shared whatever I came across at vkanakaraj.wordpress.com/tag/shock – rajakvk Mar 2 '12 at 10:22

1 Answer

up vote 6 down vote accepted

In short terms, nothing wrong here!

The + operator is "overloaded" for strings as well and works as a concatenation operator. If you apply + to a number and a string it acts like a string concat operator.

The - operator is not "overloaded" for strings. If you apply - to a number and a string it will try to convert the string to number and then do the subtraction, if possible.

share|improve this answer
thanks for the explantion @Mithrandir – rajakvk Mar 2 '12 at 10:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.