Created
February 29, 2016 21:55
-
-
Save hatched/ff0100393cd8ec3766e2 to your computer and use it in GitHub Desktop.
Named params
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
function foo({bar=0} = {}) { | |
console.log(bar) | |
} | |
foo({bar: 7}) // 7 | |
foo() // 0 | |
foo(true) // 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment