Determines if a string is an integer value.
string to use.
true if the value is a integer false otherwise.
assert("13".isInteger == true); assert("13.333333".isInteger == false); assert("zzzz".isInteger == false);
See Implementation
Determines if a string is an integer value.