Returns whether all the characters in the given text is alphabetic
Optional
the text to check
whether all the characters in the given text is alphabetic
isAlphabetic('abc'); // trueisAlphabetic('abc123'); // falseisAlphabetic('123456'); // false Copy
isAlphabetic('abc'); // trueisAlphabetic('abc123'); // falseisAlphabetic('123456'); // false
Returns whether all the characters in the given text is alphabetic