Skip to content

Instantly share code, notes, and snippets.

@elrrrrrrr
Created May 1, 2015 15:05
Show Gist options
  • Save elrrrrrrr/55677d3be92e39958cec to your computer and use it in GitHub Desktop.
Save elrrrrrrr/55677d3be92e39958cec to your computer and use it in GitHub Desktop.
JS es6 default param
function complex({ name, email, phone = null }) {
//variables `name`, `email`, and `phone` are available here
}
var user = {
name: 'foo',
email: 'bar',
phone: '123456'
};
complex(user);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment