Created
March 23, 2016 01:47
-
-
Save lricoy/72a088a42c2f2a4d0421 to your computer and use it in GitHub Desktop.
ES2015 default values
This file contains hidden or 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 f(x, y=12) { | |
// y é 12 se não passado (ou passado como undefined) | |
return x + y; | |
} | |
f(3) == 15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment