Check that a string only consists of lower-case characters
isLower("abcdefghijklmnopqrstuvxyz") // => true isLower("A") // => false isLower("abcdefghijKlmnopqrstuvxyz") // => false
true if it only contains alphanumeric characters.
the string of characters
Check that a string only consists of lower-case characters
Returns
true if it only contains alphanumeric characters.