Check that a string only consists of uppercase characters
isUpper("abcdefghijKlmnopqrstuvxyz") // => true isUpper("ABCDEFGHIJKLmNOPQRSTUVXYZ") // => false isUpper("=") // => false
true if it only contains uppercase characters.
the string of characters
Check that a string only consists of uppercase characters
Returns
true if it only contains uppercase characters.