码迷,mamicode.com
首页 > 其他好文 > 详细

instanceof判断问题

时间:2020-03-27 12:25:36      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:console   类型   根据   str1   splay   eof   play   规则   判断   

有时候我们根据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

instanceof判断问题

标签:console   类型   根据   str1   splay   eof   play   规则   判断   

原文地址:https://www.cnblogs.com/vnwith/p/12580524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!