博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js判断对象的类型的四种方式
阅读量:6433 次
发布时间:2019-06-23

本文共 368 字,大约阅读时间需要 1 分钟。

5种原始类型:

undefined、null、bool、number、string 引用类型(new出来的)

typeof

undefined、object、boolean、number、string 、Object

constructor

undefined、null、bool、number、string、正常

instanceof

undefined、null、bool、number、string、正常

toString(最好方案)

例子 是否数组

object.prototype.tostring.call(arr)=="[Object Array]"

undefined、null、bool、number、string、正常

 

转载于:https://www.cnblogs.com/txiao/p/5359519.html

你可能感兴趣的文章
Java线程代码
查看>>
动态规划之硬币表示问题
查看>>
AGG第三课 下载与编译
查看>>
FFmpeg h264_probe函数剖析
查看>>
排序链表中删除重复元素II
查看>>
MSSQL2000+SP4补丁安装图解
查看>>
SpringData入门笔记(三) - SpringData初尝鲜
查看>>
Shell颜色控制
查看>>
20Exchange Server 2010跨站点部署-分支机构CAS配置
查看>>
cacti监控memcache
查看>>
制作U盘安装Ubuntu步骤
查看>>
Java Class文件详解
查看>>
Nagios监控Linux、Windows的网卡流量
查看>>
Python urllib模块的URL编码解码功能
查看>>
Active Directory Web Services Error
查看>>
oracle关闭问题shutdown
查看>>
hadoop hive 手记
查看>>
powershell在远程windows server上登录并执行程序
查看>>
Android 的网络通信的小知识
查看>>
多网卡Linux服务器如何确定网口位置
查看>>