How come I can use += on a string, but I cannot use -= on it?
+=
-=
For example...
var test = \"Test\"; var arr = \"⇔\"
Generally, programming languages don't define subtraction for strings. += isn't really addition in the first place, it's concatenation.