function MyClass() { return this.constructor ? this.constructor : arguments.callee; } var a = new MyClass, b = new MyClass; alert(a === b); // true