Checks if a string contains only numeric characters.
Returns true if the string contains only numeric.
true
isNumeric('alpha1234')// falseisNumeric('1234')// true
The string
Generated using TypeDoc
Checks if a string contains only numeric characters.
Returns
Returns
true
if the string contains only numeric.Example