美文网首页
判断数据类型

判断数据类型

作者: 李小白呀 | 来源:发表于2021-02-12 21:36 被阅读0次
  1. intanceof
    用法:object intanceof constructor
    intanceof 运算符用来检测 constructor.prototype 是否存在于参数 object 的原型链上
    object : 某个实例对象
    constructor:某个构造函数

作用:检测 object 是否为 constructor的实例
例如:arr intanceof Array

  1. typeof
    typeof 操作符返回一个字符串,表示未经计算的操作数的类型

3.Object.prototype.toString.call(要判断的)
typeof 无法区分对象、数组、函数的类型;
可以通过 Object.prototype.toString方法,判断某个对象属于哪种内置类型。
分为null,string、boolean、number、undefined、array、function、object、date、math

相关文章

网友评论

      本文标题:判断数据类型

      本文链接:https://www.haomeiwen.com/subject/zhyjxltx.html