Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@webdesignberlin
Forked from emilong/default-default.js
Created October 16, 2016 20:16
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 webdesignberlin/1189b1239eda430302bdac0cdf52ddeb to your computer and use it in GitHub Desktop.
Save webdesignberlin/1189b1239eda430302bdac0cdf52ddeb to your computer and use it in GitHub Desktop.
function defaults({ a = 1, b = 2 } = {}) {
console.log('a', a);
console.log('b', b);
}
defaults();
// a 1
// b 2
defaults({ a: 42, b: 32 });
// a 42
// b 32
// multiple params? no problem, just supply the ones you want
defaults({ a: 87 });
// a 87
// b 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment