Returns whether all the characters in the given text is uppercase alphabetic
Optional
the text to check
whether all the characters in the given text is uppercase alphabetic
David Hsing
isAlphabeticUpper('ABC'); // trueisAlphabeticUpper('abc'); // falseisAlphabeticUpper('abc123'); // falseisAlphabeticUpper('123456'); // false Copy
isAlphabeticUpper('ABC'); // trueisAlphabeticUpper('abc'); // falseisAlphabeticUpper('abc123'); // falseisAlphabeticUpper('123456'); // false
Returns whether all the characters in the given text is uppercase alphabetic