Last active
August 29, 2015 14:15
-
-
Save jasonm/86a4e837808b77e1eeab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/dev/es6exp $ ./node_modules/babel/bin/babel-node | |
> var { op: a } = { op: 5 }; | |
undefined | |
> a | |
5 // this makes sense to me | |
> var [a=1] = []; | |
undefined | |
> a | |
{ op: 5 } // where did this come from? | |
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment