Skip to content

Instantly share code, notes, and snippets.

@benjamn
Created March 28, 2009 00:22
Show Gist options
  • Save benjamn/86984 to your computer and use it in GitHub Desktop.
Save benjamn/86984 to your computer and use it in GitHub Desktop.
var empty = function() {
this.foo = 0;
}
empty.prototype = { foo: 42 };
var obj = new empty;
print(obj.foo);
obj.foo = window.undefined;
print(obj.foo);
delete obj.foo;
print(obj.foo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment