Type Method
Format string. CharCodeAt (position)
Commentary
Returns the character code of the specified position.
Sample code - QC 2 JavaScript
str = "A";
n = str.charCodeAt (0);
outputs [0] = n;
Sample code - QC 3 JavaScript
function (__number outputNumber) main ()
{
var result = new Object();
str = "A";
n = str.charCodeAt(0);
result.outputNumber = n;
return result;
}