Skip to content
Advertisement

Tag: alphabetical

Convert number to alphabet letter

I want to convert a number to its corresponding alphabet letter. For example: Can this be done in javascript without manually creating the array? In php there is a range() function that creates the array automatically. Anything similar in javascript? Answer Yes, with Number#toString(36) and an adjustment.

Advertisement