convert number to letter string javascript code example
Example: js int to alphabet
var value = 10;
document.write((value + 9).toString(36).toUpperCase());
var value = 10;
document.write((value + 9).toString(36).toUpperCase());