So konvertieren Sie Char in JS in die Zahl in JS
// the first parameter is the index of the string to convert to an ascii code
"A".charCodeAt(0);
//output: 65
Embarrassed Earthworm