Skip to content

Instantly share code, notes, and snippets.

@buggy
Created March 28, 2018 12:33
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 buggy/3df16ad87751a9cb6eeacad3a909a9e9 to your computer and use it in GitHub Desktop.
Save buggy/3df16ad87751a9cb6eeacad3a909a9e9 to your computer and use it in GitHub Desktop.
Default options with the Javascript spread operator
function myfunc(options) {
const defaultOptions = {
min: 0,
max: 10,
};
const finalOptions = {
...defaultOptions,
...options,
};
console.log(finalOptions);
}
myfunc({});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment