When I execute the following javascript statement:
alert(\"1\" - - \"1\");
I get the result 2.
Why is this?
Since you can't subtract strings, the - operator converts them to numbers. If you subtract negative one from positive one you get two.
-