Skip to content

Instantly share code, notes, and snippets.

@asarode
Created November 9, 2015 23:11
Show Gist options
  • Save asarode/d580b5940ab8cf158c2a to your computer and use it in GitHub Desktop.
Save asarode/d580b5940ab8cf158c2a to your computer and use it in GitHub Desktop.
function thing({ a = 1, b }) {
console.log(`a: ${a} b: ${b}`)
}
const options = {
b: 2
}
thing(options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment