编程题选了前端 事后靠薄弱的记忆(当时写编程留下的时间过于少了惊慌下基本没答出来光记了题目orz) 于是在这里回忆了题目: function People(name,age){ this.name=name; this.age=age; this.say=function(){ console.log("我的名字是:"+this.name+"我今年"+this.age+"岁!"); ...