日常生活的交流与学习

首页 新随笔 联系 管理

答案:三种方法,分别是

  1. 类型检查typeof
  2. 字符串的构造器 constructor
  3. 调用对象的原型 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

posted on 2021-10-01 23:51  lazycookie  阅读(39)  评论(0编辑  收藏  举报