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.
Use String.fromCharCode. This returns a string from a Unicode value, which matches the first 128 characters of ASCII.
String.fromCharCode
var a = String.fromCharCode(97);