javascript的typeof返回哪些数据类型
1个回答
展开全部
1-----undefined
string
boolean
number
object -------对象或者null返回的是object
function
这些是typeof返回的类型字符串
2------var box;
alert(box); 没有初始化的变量就是undefined
3-----alert(typeof box);
4-----var box={};
alert(typeof box);
就是object
5-----var box={};
alert(box);
就是[object object]
6----null派生自object
7---var box =new object();
alert(box);
8----function king(){}
alert(king);
9-----var box="wjje";
alert(typeof "wjje");
alert(typeof box);
10-----typeof 是内置的操作符而非函数
11-----不赋值的时候就是undefined
string
boolean
number
object -------对象或者null返回的是object
function
这些是typeof返回的类型字符串
2------var box;
alert(box); 没有初始化的变量就是undefined
3-----alert(typeof box);
4-----var box={};
alert(typeof box);
就是object
5-----var box={};
alert(box);
就是[object object]
6----null派生自object
7---var box =new object();
alert(box);
8----function king(){}
alert(king);
9-----var box="wjje";
alert(typeof "wjje");
alert(typeof box);
10-----typeof 是内置的操作符而非函数
11-----不赋值的时候就是undefined
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询