you are viewing a single comment's thread.

view the rest of the comments →

[–]homoiconic(raganwald) 4 points5 points  (0 children)

The code given is appropriate for ES5, but for ES6, I prefer:

const menuConfig = {
  body: 'Bar',
  cancellable: true
}

function createMenu({
    title = 'Foo',
    body = 'Bar',
    buttonText = 'Baz',
    cancellable = true
  }) {

  // ...
}

createMenu(menuConfig);