Skip to content

Instantly share code, notes, and snippets.

@st98
Created January 27, 2015 12:12
Show Gist options
  • Save st98/4b1892519528d2b36575 to your computer and use it in GitHub Desktop.
Save st98/4b1892519528d2b36575 to your computer and use it in GitHub Desktop.
{p} # => {p: p}
{p} = obj # => var p; p = obj.p;
{p: p} = obj # => var p; p = obj.p;
var {p} = {p: 1};
console.log(p); // => 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment