You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
297 B

function Foo() {
this.__proto__ = Foo.prototype;
}
Foo.prototype = { value : function() { return this.x + this.y; } };
var a = { __proto__ : Foo.prototype, x: 1, y: 2 };
var b = new Foo();
b.x = 2;
b.y = 3;
var result1 = a.value();
var result2 = b.value();
result = result1==3 && result2==5;