js中的typeof和instanceof和===
阿新 • • 發佈:2017-08-31
nbsp blog brush 對象 類型 strong 基本 ole null
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和===