Function isLower

  • Check that a string only consists of lower-case characters

        isLower("abcdefghijklmnopqrstuvxyz") // => true
    isLower("A") // => false
    isLower("abcdefghijKlmnopqrstuvxyz") // => false

    Returns

    true if it only contains alphanumeric characters.

    Parameters

    • string: string

      the string of characters

    Returns boolean