Since the + operator is used for both concatenating and arithmetic addition javascript has to make a decision on what to do when a number is added to a string. It decides in favor of concatenation. With any of the other arithmetic operators it isn't a problem--the only thing that makes sense it for both operands to be numbers, so javascript ...