Skip to content

Instantly share code, notes, and snippets.

@melonmanchan
Created April 5, 2016 18:02
Show Gist options
  • Save melonmanchan/ed5c25cc60687172e84e8ffc7abcfe70 to your computer and use it in GitHub Desktop.
Save melonmanchan/ed5c25cc60687172e84e8ffc7abcfe70 to your computer and use it in GitHub Desktop.
function easyToScrewup(param1, param2, pamar3) {
console.log(param1, param2, param3)
}
function hardToScrewup(params) {
if (!params) params = {}
console.log(params.param1, params.param2, params.param3)
}
easyToScrewup('param1', 'param2', 'param3')
hardToScrewup({param1: 'param1', param2: 'param2', param3: 'param3'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment