// 函数b如下
function a(x, y, z) {
this.x = x;
this.y = y;
this.z = z;
}
function b() {
}
b.prototype = {
method1: function () {
return this.x + this.y + this.z;
}
}
实例化一个对象c,
要求c.method1() === 6且
c.hasOwnProperty("method1") === false、
c.hasOwnProperty(“x") === true、
c.hasOwnProperty(“y") ===true、
c.hasOwnProperty(“z") === true