字符串方法
//通过下标找到特定的值
"hello".charAt(0); // "h"
//替换值
"hello, world".replace("world", "mars"); // "hello, mars"
//转成大写
"hello".toUpperCase(); // "HELLO"
//通过下标找到特定的值
"hello".charAt(0); // "h"
//替换值
"hello, world".replace("world", "mars"); // "hello, mars"
//转成大写
"hello".toUpperCase(); // "HELLO"