function People(name) {
this.name = name;
this.sayName = function () {
console.log("my name is:" + this.name);
}
}
People.prototype.walk = function () {
console.log(this.name + " is walking"); this
}
var p1 = new People("");
var p2 = new People("");
People.prototype.walk () Sorry, the problem is not fully described, so what does the this in this function represent