js中的typeof和instanceof和===的区别
程序员文章站
2022-03-06 20:00:17
...
js中的typeof和instanceof和===的区别
typeof:用于判断number/string/boolean/underfined类型/function,不能判断:null和object ,不能区分object和Array
instanceof:判断具体的对象类型
===:用于判断undefined和null
//五种基本类型 var num=1; var str="abc"; var bl=true; var nu=null; var undef=undefined; //三种特殊类型 var obj=new Object(); var arr2=["1",2,true]; var fun=function () { } write("-------typeof-----------") write(num,typeof num);//1 number write(str,typeof str);//abc string write(bl,typeof bl);//true boolean write(nu,typeof nu);//null object write(undef,typeof undef)//undefined undefined write(obj,typeof obj);//[object Object] object write(arr2,typeof arr2);//1,2,true object write("-----------===-----------") write(num,typeof num==="number");//1 true write(str,typeof str==="string");//abc true write(bl,typeof bl==="boolean");//true true write(nu,typeof nu==="object");//null true write(undef,typeof undef==="undefined")//undefined true write(obj,typeof obj==="object");//[object Object] true write(arr2,typeof arr2==="object");//1,2,true true write(fun,typeof fun==="function");//function () { } true write("---------instanceof---------------") write(obj,obj instanceof Object)//[object Object] true write(arr2,arr2 instanceof Array);//1,2,true true write(arr2,arr2 instanceof Object);//1,2,true true write(fun, fun instanceof Function)//function () { } true write(fun, fun instanceof Object)//function () { } true
以上就是js中的typeof和instanceof和===的全部内容。
以上就是js中的typeof和instanceof和===的区别的详细内容,更多请关注其它相关文章!
上一篇: JS解密,在线JS解密解密
下一篇: 浅谈Nodejs中的多线程操作
推荐阅读
-
验证torch中卷积和反卷积的计算
-
python is和==的区别
-
JS#jQuery宽高的理解和应用视频资料分享
-
算法题:给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
-
Python中logging日志的四个等级和使用
-
python中startswith()和endswith()的用法详解
-
DRP总结—Model1和Model2的区别
-
【解决】AlertDialog和AlertDialog.Builder的区别是什么
-
CGI和servlet运行方式本质的区别是什么?PHP和Java在Web开发的原理有哪些本质不同?
-
在SQL 2012中使用和Oracle 一样的序列