JS Utils Kit - v0.5.1
    Preparing search index...

    Function isAlphabetic

    • Checks if a string contains only alphabetic characters (A–Z, a–z).

      Parameters

      • value: string

        The string to check.

      Returns boolean

      • true if the string contains only letters; otherwise, false.
      isAlphabetic("Hello"); // true
      isAlphabetic("world123"); // false
      isAlphabetic("Test!"); // false