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.