ES6 字符串String 方法 charCodeAt() ES6 字符串String 方法 charAt() ES6 字符串String 方法 concat() ES6 字符串String 方法 charCodeAt() var str = new String("This is string"); console.log("str.charAt(0) is:" + str.charCodeAt(0)); console.log("str.charAt(1) is:" + str.charCodeAt(1)); console.log("str.charAt(2) is:" + str.charCodeAt(2)); console.log("str.charAt(3) is:" + str.charCodeAt(3)); console.log("str.charAt(4) is:" + str.charCodeAt(4)); console.log("str.charAt(5) is:" + str.charCodeAt(5)); ES6 字符串String 方法 charAt() ES6 字符串String 方法 concat()