Skip to content

Instantly share code, notes, and snippets.

@MagicControl
Created May 2, 2017 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MagicControl/9763ca43c12e1ffc8ef6def71e882a9e to your computer and use it in GitHub Desktop.
Save MagicControl/9763ca43c12e1ffc8ef6def71e882a9e to your computer and use it in GitHub Desktop.
b.a = 25;
console.log(b.a) // 25
delete b.a // true
console.log(b.a) // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment