Skip to content

Instantly share code, notes, and snippets.

@anddoutoi
Created March 25, 2019 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anddoutoi/7b95832005eb2fa46c10c0726b849e91 to your computer and use it in GitHub Desktop.
Save anddoutoi/7b95832005eb2fa46c10c0726b849e91 to your computer and use it in GitHub Desktop.
const foos = ['fubar']
const foo = undefined
const defaultFoos = ['snafu']
const fubar = foos ? foos : foo ? [foo] : defaultFoos
console.log(fubar)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment