blob: d991574e6664c39196148a41596fec423ed1b746 [file] [log] [blame]
function foo() {}
foo.prototype = {}
var f = new foo()
print(foo.prototype)
print(f.__proto__)
print(foo.prototype == f.__proto__)
print(f instanceof foo)