function A () { var created = this; A = function () { return created; }; } a = new A(); b = new A(); alert( a === b );