Skip to content

Instantly share code, notes, and snippets.

@usagi
Created April 13, 2012 08:05
Show Gist options
  • Select an option

  • Save usagi/2375014 to your computer and use it in GitHub Desktop.

Select an option

Save usagi/2375014 to your computer and use it in GitHub Desktop.
var x = {
aaa: 123,
bbb: 456,
ccc: 789,
};
console.log(x);
delete x.bbb;
console.log(x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment