Skip to content

Instantly share code, notes, and snippets.

@elierotenberg
Last active October 7, 2015 14:16
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 elierotenberg/5cc43425f17701ada3f3 to your computer and use it in GitHub Desktop.
Save elierotenberg/5cc43425f17701ada3f3 to your computer and use it in GitHub Desktop.
const $x = Symbol();
const t = { $x: 4, y: 5, z: 6 };
const { [$x], ...collect } = t; // collect = { y: 5, z: 6 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment