Skip to content

Instantly share code, notes, and snippets.

@cyberfly
Created May 23, 2017 01:45
Show Gist options
  • Select an option

  • Save cyberfly/cd333196e7b5c9af3b1e119d25bc9951 to your computer and use it in GitHub Desktop.

Select an option

Save cyberfly/cd333196e7b5c9af3b1e119d25bc9951 to your computer and use it in GitHub Desktop.
Remove element from Object using Javacript
var obj = {name: "upin", email: "[email protected]", role_id: "1"};
delete obj.email;
//will produce {name: "upin", role_id: "1"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment