instanceof判断问题

半城伤御伤魂 提交于 2020-03-27 16:17:46

有时候我们根据instanceof来判断对象的数据类型

但是 用instanceof判断基本数据类型时 会不靠谱

例如

let str = '123'

let str1 = new String("123")

console.log(str instanceof String)  //false

console.log(str1 instanceof String ) //true

这时候,可以重写instanceof的判断规则

class typeofString{

  static [Symbol.hasInstance](x){

    return typeof str === "string"    

  }

}

console.log(str typeof typeofString)  //true

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!