第一个使用object构造函数,第二个使用function构造函数,使用typeof()检测到他们都是object类型,他们有什么区别呢?var age = new Object;
age.tom = '20';
alert(age.tom);function age(){
age.tom = '20';
};var a = new age();
alert(age.tom);
添加回答
举报
0/150
提交
取消