>  기사  >  웹 프론트엔드  >  js에서 typeof, instanceof 및 ===의 차이점

js에서 typeof, instanceof 및 ===의 차이점

WJ
WJ앞으로
2020-05-30 10:52:112403검색

js에서 typeof, instanceof 및 ===의 차이점

js

typeof와 인스턴스of 및 ===의 차이점: 숫자/문자열/부울/정의되지 않은 유형/함수를 판단하는 데 사용됨, 판단할 수 없음: null 및 객체, 객체와 배열을 구별할 수 없음

instanceof: 특정 객체 유형을 결정합니다.

===: 정의되지 않음과 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, 인스턴스of 및 ===의 모든 내용입니다.

관련 참조: php 중국어 웹사이트

위 내용은 js에서 typeof, instanceof 및 ===의 차이점의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 51dev.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제