Skip to content

Instantly share code, notes, and snippets.

@gyver98
Created December 18, 2016 23:23
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/fa2fe63787721e3a51bb6405d68a87fb to your computer and use it in GitHub Desktop.
Save gyver98/fa2fe63787721e3a51bb6405d68a87fb to your computer and use it in GitHub Desktop.
Default Values for Function Parameters in ES6
function greet(greeting, name = "Matthew") {
console.log(greeting + ", " + name);
}
greet("Hello");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment