字符串的methods(方法)+所有JS类型

字符串方法
//通过下标找到特定的值
"hello".charAt(0); // "h"
//替换值
"hello, world".replace("world", "mars"); // "hello, mars"
//转成大写
"hello".toUpperCase(); // "HELLO"
所有JS类型
  • Number(数字)
  • String(字符串)
  • Boolean(布尔)
  • Symbol(符号)(ES2015 新增)
  • Object(对象)
    • Function(函数)
    • Array(数组)
    • Date(日期)
    • RegExp(正则表达式)
  • null(空)
  • undefined(未定义)

你可能感兴趣的:(字符串的methods(方法)+所有JS类型)