メソッド Type method
文字列.charCodeAt(位置) Format string. CharCodeAt (position)
Commentary
指定された位置の文字コードを返します。 Returns the character code of the specified position.
サンプルコード Sample code
str = "A"; str = "A";
n = str.charCodeAt(0); n = str.charCodeAt (0);
outputs[0] = n; outputs [0] = n;