一道JavaScript中关于函数和对象的问题
function newclass(){
this.firstname="hell";
lastname:"mama";
}
var na=new newclass();
console.log(na.firstname);
console.log(na.lastname);
第二个输出为undefined。
我有两个问题,
一是js中函数里也可以使用键值的形式是因为函数也是对象吗?如果不是这个原因那是为什么呢?
二是如果一成立,那么第二个输出为什么是undefined?
不辣的披特
10 years, 7 months ago
Answers
善用搜索诶, https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Stat...
function newclass(){
this.firstname="hell";
lastname:
"mama";
}
春哥信徒A
answered 10 years, 7 months ago