JavaScript-String对象的charAt、charC
2017-09-24 本文已影响44人
报告老师
1.charAt方法,用于获取相应索引位置的字符串
参数:索引(index)
返回值:一个字符
var str = "fuck";
getchar = str.charAt(1);
console.log(getchar);
输出结果:u
2.charCodeAt方法,用于获取相应索引位置的字符的unicode编码
参数:索引(index)
返回值:具体的Unicode字符编码
var str2 = "helloworld";
var strCode = str2.charCodeAt(2);
console.log(strCode);
输出结果:101