anchor/small/big/fontsize/blink/bold/italics/strike用于创建标签//consttxt="context"用于添加锚点;consthtmla=txt.anchor("猫店");console.log(htmla);//Hello,worldat/charAt/charCodeAt//传入标记并返回一个新的字符串consttxt="text";consttxt1=txt.at(2);骗子sole.log(txt,txt1);//文本xconsttxt="text";consttxt1=txt.charAt(2);控制台日志(txt,txt1);//textx//charCodeAt()方法返回0一个介于65535和65535之间的整数,表示给定索引处的UTF-16代码单元consttxt="text";consttxt1=txt.charCodeAt(2);console.log(txt,txt1);//text120codePointAt//codePointAt()方法返回一个Unicode代码点值的非负整数consttxt="text";consttxt1=txt.codePointAt();console.log(txt1);//116concat//连接字符串链接。consttxt="text";consttxt1="text2";console.log(txt.concat(txt1));//texttext2吃完饭回来继续~
