Skip to content

Instantly share code, notes, and snippets.

@yingjieg
Created November 2, 2018 07:02
Show Gist options
  • Select an option

  • Save yingjieg/de91588c4a98d998b8bbcba1833edff3 to your computer and use it in GitHub Desktop.

Select an option

Save yingjieg/de91588c4a98d998b8bbcba1833edff3 to your computer and use it in GitHub Desktop.
JavaScript ES6 Tips
const data = {
a: 1,
b: 2,
c: 3
};
const { a, ...newData } = data;
console.log(newData);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment