Skip to content

Instantly share code, notes, and snippets.

@njbmartin
Created April 4, 2021 03:24
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 njbmartin/723f1b3ba3ed1e3bb6e1fd28edb299c4 to your computer and use it in GitHub Desktop.
Save njbmartin/723f1b3ba3ed1e3bb6e1fd28edb299c4 to your computer and use it in GitHub Desktop.
const person = {
firstName: "Jane",
lastName: "Bloggs",
email: "jane@example.com",
phone: "0123456789"
};
console.log(person.email);
// expected output: "jane@example.com"
delete person.email;
console.log(person.email);
// expected output: undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment