Skip to content

Instantly share code, notes, and snippets.

@shaunwallace
Created November 19, 2014 13:04
Show Gist options
  • Save shaunwallace/8fe9b7137d9ecd430a33 to your computer and use it in GitHub Desktop.
Save shaunwallace/8fe9b7137d9ecd430a33 to your computer and use it in GitHub Desktop.
Object.seal()
var obj12 = { foo : 200 };
obj12.foo = false;
obj12; // returns false
Object.seal( obj12 );
obj12.foo = 100;
obj12.foo; // returns 100
delete obj12.foo; // returns false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment