how to convert number to alphabet in 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());