Converts a number to an alphabetically ordered string.
The number to convert.
console.log(convertListcases(1)); // 'a'console.log(convertListcases(26)); // 'z'console.log(convertListcases(27)); // 'a' Copy
console.log(convertListcases(1)); // 'a'console.log(convertListcases(26)); // 'z'console.log(convertListcases(27)); // 'a'
Generated using TypeDoc
Converts a number to an alphabetically ordered string.