新手求助:为什么这里的Console.log返回undefined?

function d(){this.get=function(){this.getNum()}};
d.prototype.getName=function(){return 3;};
var d = new d();
console.log(d.get());//undefined

为什么这里显示undefined?而不是3?求解答


jeck猫
浏览 570回答 1
1回答

慕无忌1623718

function d(){this.get=function(){return this.getName()}};d.prototype.getName=function(){return 3;};var d = new d();console.log(d.get());//undefined
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript