Asci value conversion in js code example
Example 1: character to ascii in js
'a'.charCodeAt(0)//returns 97, where '0' is the index of the string 'a'
Example 2: js number to ascii
String.fromCharCode(97); // --> 'a'
'a'.charCodeAt(0)//returns 97, where '0' is the index of the string 'a'
String.fromCharCode(97); // --> 'a'