可能重复:
将数字转换为可能的最短字符串,同时保持唯一性
我想计算一些东西,我只有一个数字来报告结果,所以我想用字母表示 > 9 的数字。例如
1 => 1
5 => 5
10 => A
30 => U
55 => u // I may have an off-by-one error here -- you get the idea
>61 => z // 60 will be more than enough, so I'll use z to mean "at least 62"
使用 javascript 最简单的方法是什么?