Skip to content

Instantly share code, notes, and snippets.

@SomeoneWeird
Last active August 29, 2015 14:12
Show Gist options
  • Save SomeoneWeird/74d27e6dff35118e4de3 to your computer and use it in GitHub Desktop.
Save SomeoneWeird/74d27e6dff35118e4de3 to your computer and use it in GitHub Desktop.
function something(options) {
var { hello = "world" } = options;
console.log(hello);
}
something({ hello: "lol" }); // -> hello lol
something({}); // -> hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment