Returns whether all the characters in the given text is numeric
Optional
the text to check
whether all the characters in the given text is numeric
isNumeric(undefined); // falseisNumeric('abc123'); // falseisNumeric('123456'); // true Copy
isNumeric(undefined); // falseisNumeric('abc123'); // falseisNumeric('123456'); // true
Returns whether all the characters in the given text is numeric