当前位置: 代码迷 >> 综合 >> typeof instanceof 区别
  详细解决方案

typeof instanceof 区别

热度:80   发布时间:2024-02-22 22:17:40.0

typeof  检查数据类型并且输出它们的名字(返回小写字母字符串)

js有5种基本类型(undefined,boolean,number,string,null),1种复杂数据类型object

instanceof 检查一个变量是否一个对象的实例(返回布尔值)

  相关解决方案