答案:三种方法,分别是
- 类型检查typeof
- 字符串的构造器 constructor
- 调用对象的原型 toString方法
解析:
①typeof
typeof('123') === "string" // true
typeof '123' === "string" // true
②constructor
'123'.constructor === String // true
③Object.prototype.toString.call()
Object.prototype.toString.call('123') === '[object String]' // true