Convert character in string to ascii numeric value
This JavaScript function converts a substring to ascii numeric value
var mystring;
myascii = mystring.charCodeAt(0); //Takes the first character and convert it
myascii = mystring.charCodeAt(5); //Takes the sixth characters and convert it
Knowledge keywords: