Skip to content

Instantly share code, notes, and snippets.

@lricoy
Created March 23, 2016 01:47
Show Gist options
  • Save lricoy/72a088a42c2f2a4d0421 to your computer and use it in GitHub Desktop.
Save lricoy/72a088a42c2f2a4d0421 to your computer and use it in GitHub Desktop.
ES2015 default values
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