Skip to content

Instantly share code, notes, and snippets.

@zbarnes757
Created April 25, 2019 19:43
Show Gist options
  • Save zbarnes757/dea3f226a7b83670e662ff5900ad8023 to your computer and use it in GitHub Desktop.
Save zbarnes757/dea3f226a7b83670e662ff5900ad8023 to your computer and use it in GitHub Desktop.
default destructuring
function defaultName() {
return "name";
}
function handle({ name = defaultName() } = {}) {
console.log(name);
}
handle();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment