• Returns a random string that between the length range

    Parameters

    • OptionalminLength: number

      the min length, inclusive

    • OptionalmaxLength: number

      the max length, exclusive

    • characters: string = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'

      the source characters to be generated from

    Returns string | undefined

    a random string that between the length range

    randomString(8);