function prints(a){ console.log(a) } var a = "柔肠先断。舟系汾湖岸。别恨离愁秋水漫。写入数行新雁。幽闺兰梦初成。犹将小字呼卿。几点梧桐夜雨,一天霜月砧声。" //字符串属性 prints(a.length) //文本长度 prints(a.codePointAt) //方法 prints(a.charAt(2)) //返回指定位置的字符(0开始算) prints(a.charCodeAt(2)) //返回指定位置字符的Unicode码(0开始算) prints(a.concat("123","456")) // 连接后缀文本,可以多个逗号隔开 prints(String.fromCharCode(65)) //将 Unicode 转换为字符串