js charAt toUpperCase用法

charAt()
var str="hellow";
str.charAt(1)
返回的值是e

toUpperCase()
var str="helloow";
str.toUpperCase()
返回的值是HELLOOW

原文地址:https://www.cnblogs.com/lsyy2017/p/14246710.html