js int to alphabet

Solutions on MaxInterview for js int to alphabet by the best coders in the world

showing results for - "js int to alphabet"
Constanza
24 Aug 2018
1var value = 10;
2
3document.write((value + 9).toString(36).toUpperCase());