Quantcast
Channel: Why can't "?" be used in variable or function names
Viewing all articles
Browse latest Browse all 12

Partial default arguments

$
0
0

getify wrote:

object destructuring (even with defaults) can be nested, even in parameter lists, so you can unwind any arbitrary depth object into top level parameters in your function, then recombine them as necessary. It's not as bad as you might think:

function foo(
  // destructure with default setting
  {
    options: { remove = true, enable = false, instance = {} } = {},
    log: { warn = true, error = true } = {}
  }
) {
  // restructure
  let opts = {
    options: { remove, enable, instance },
    log: { warn, error}
  };

  console.log( opts );
}

foo({
  options: {
    remove: true,
    enable: false,
    instance:{}
  },
  log: {
    warn: true,
    error:true
  }
});

Read full topic


Viewing all articles
Browse latest Browse all 12

Trending Articles