2020
12-03
12-03
js 数据类型判断的方法
typeof一般用于判断基本数据类型,用于判断引用数据类型和null时会发生意外的错误typeof1//numbertypeof'1'//stringtypeoftrue//booleantypeofSymbol('1')//symboltypeofundefined//undefinedtypeoffunction(){}//functiontypeof{a:1}//objecttypeof[1,2,3]//object这里会判断异常,建议使用Array.isArray区分数组和对象//以下也会判断异常typeofnewBoolean(true)==='object';typeofnewNumber...
继续阅读 >