关于[JavaScript字符串操作方法大全,包含ES6方法]的摘要:
一、charAt()返回在指定位置的字符。var str="abc"console.log(str.charAt(1))//a二、charCodeAt()返回在指定的位置的字符的 Unicode 编码。var str="abc"console.log(str.charCodeAt(1))//98三、concat()连接字符串。var a = "abc";var b = "def";va...
一、charAt()返回在指定位置的字符。var str="abc"console.log(str.charAt(1))//a二、charCodeAt()返回在指定的位置的字符的 Unicode 编码。var str="abc"console.log(str.charCodeAt(1))//98三、concat()连接字符串。var a = "abc";var b = "def";va...