变量类型
字符串变量
函数声明
charCodeAt(index)
功能说明
获取指定索引的字符的Unicode编码
参数说明
index | 目标索引 |
返回值
一个整数(Unicode编码)
代码示例
var str = 'ABC';
var v = str.charCodeAt(1);
console.log(v);
变量类型
字符串变量
函数声明
charCodeAt(index)
功能说明
获取指定索引的字符的Unicode编码
参数说明
index | 目标索引 |
返回值
一个整数(Unicode编码)
代码示例
var str = 'ABC';
var v = str.charCodeAt(1);
console.log(v);