Skip to content

Instantly share code, notes, and snippets.

@gyver98
Created December 18, 2016 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gyver98/8eb6ae394e97289fcd6933c5c8d5304f to your computer and use it in GitHub Desktop.
Save gyver98/8eb6ae394e97289fcd6933c5c8d5304f to your computer and use it in GitHub Desktop.
Default Values for Function Parameters in ES6
function receive (complete = function () {
console.log("complete");
}) {
complete();
}
receive();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment