• Converts a number to an alphabetically ordered string.

    Parameters

    • value: number

      The number to convert.

    Returns string

    • The converted list case string.

    Example

    console.log(convertListcases(1)); // 'a'
    console.log(convertListcases(26)); // 'z'
    console.log(convertListcases(27)); // 'a'

Generated using TypeDoc