91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

instanceof與typeof以及===有什么區別

發布時間:2020-06-01 21:00:31 來源:億速云 閱讀:334 作者:鴿子 欄目:web開發

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和===的區別的詳細內容,更多請關注億速云其它相關文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绥化市| 于都县| 蓬莱市| 曲松县| 明水县| 永和县| 报价| 大姚县| 施甸县| 郴州市| 罗山县| 铁岭市| 攀枝花市| 稷山县| 宜城市| 新竹市| 邵阳县| 彰化县| 安达市| 荃湾区| 辽源市| 西华县| 连山| 绥宁县| 景德镇市| 翁源县| 苍溪县| 普安县| 汝城县| 长兴县| 屯留县| 红河县| 渑池县| 赤峰市| 牟定县| 兴山县| 柏乡县| 绿春县| 阿尔山市| 大理市| 恭城|