Checks if objects are equal. If the objects are integer based then the values returned will be 1 = true or 0 = false.
bool EQUALS(object a, object b)
bool EQUALS(string a, string b)
bool EQUALS(string a, string b, bool ignoreCase)
EQUALS("Apples", "Apples")
Returns true.
or
EQUALS("apples", "oranges")
Returns false.
or
EQUALS(10,4)
Returns '0'.