Skip to content

Instantly share code, notes, and snippets.

@benshimmin
Created June 22, 2013 16:13
Show Gist options
  • Save benshimmin/5841434 to your computer and use it in GitHub Desktop.
Save benshimmin/5841434 to your computer and use it in GitHub Desktop.
Lovely destructured assignment in CoffeeScript
[ { left : x, top : y }, width, height ] = [
$el.offset(), $el.width(), $el.height()
]
@bounds = {x, y, width, height}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment