Returns whether all the characters in the given text is lowercase alphabetic
Optional
the text to check
whether all the characters in the given text is lowercase alphabetic
David Hsing
isAlphabeticLower('abc'); // trueisAlphabeticLower('abcDEF'); // falseisAlphabeticLower('abc123'); // falseisAlphabeticLower('123456'); // false Copy
isAlphabeticLower('abc'); // trueisAlphabeticLower('abcDEF'); // falseisAlphabeticLower('abc123'); // falseisAlphabeticLower('123456'); // false
Returns whether all the characters in the given text is lowercase alphabetic