I have a condition in my code similar to:
If not IsNumeric(x) Then ...
End If
when x = "2.50+
or x = "2.50-
or any other valid number with '+' or '-' tacked on to the end, IsNumeric(x) returns True!
So both examples of x are valid numeric types for VBScript, but I can't find anything online that documents or suggests this. Why does VBScript allow this, and what would it be used for?