2021
03-05
03-05
js数据类型以及其判断方法实例
js的数据类型基本数据类型:number,string,boolean,undefined,null,Symbol,引用数据类型:objectNaN属于number;Function,Array,Date都属于object;基本数据类型除null都可以通过typeof判断,引用数据类型除Function外都返回Ojbectleta=1,b='2',c=true,d=undefined,e=null,f=Symbol('f'),g=function(){},h=[],i=newDate()console.log(typeofa)console.log(typeofb)console...
继续阅读 >