Convert integer into its character equivalent, where 0 => a, 1 => b, etc

前端 未结 12 805
无人共我
无人共我 2020-11-28 02:52

I want to convert an integer into its character equivalent based on the alphabet. For example:

0 => a
1 => b
2 => c
3 => d

etc.

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-28 03:10

    Assuming you want lower case letters:

    var chr = String.fromCharCode(97 + n); // where n is 0, 1, 2 ...
    

    97 is the ASCII code for lower case 'a'. If you want uppercase letters, replace 97 with 65 (uppercase 'A'). Note that if n > 25, you will get out of the range of letters.

提交回复
热议问题