Skip to content

Instantly share code, notes, and snippets.

@gfish94
Created August 18, 2023 04:09
var person = { name: ‘John’, age: 29};
delete person.age;
console.log(person); // => { name: 'John' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment