Skip to content

Instantly share code, notes, and snippets.

@KyleMit
Created October 15, 2020 20: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 KyleMit/a9ebed4be66243c9e12a1573d37ca3cb to your computer and use it in GitHub Desktop.
Save KyleMit/a9ebed4be66243c9e12a1573d37ca3cb to your computer and use it in GitHub Desktop.
Twitter - Delete Operator
let person = {
FirstName: "Ada",
LastName: "Lovelace",
Password: "********"
}
console.log(person)
// { FirstName: "Ada", LastName: "Lovelace", Password: "********"}
delete person.Password
console.log(person)
// { FirstName: "Ada", LastName: "Lovelace"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment