function Keith(){ this.height = 180; } var person = Keith(); console.log(person.height); //person is underfined
function Keith(){ this.height = 180; return{ height:200 }; } var boy = new Keith(); console.log(boy.height) //200 function Keith(){ this.height =100; return 200; } var boy = new Keith(); console.log(boy.height); //100
原文:http://www.cnblogs.com/21haoxingxiu/p/7253463.html