Skip to content

Instantly share code, notes, and snippets.

@ACbosong

ACbosong/.js Secret

Created August 10, 2021 10:32
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 ACbosong/736879e1a430ecb500552a3a9a90696f to your computer and use it in GitHub Desktop.
Save ACbosong/736879e1a430ecb500552a3a9a90696f to your computer and use it in GitHub Desktop.
let o1 = {
attr1: 1,
attr2: 2,
};
o1.attr3 = 3;
delete o1.attr3; // true
delete o1.attr2; // true
Object.keys(o1); // ["attr1"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment