Created
March 25, 2019 14:17
-
-
Save anddoutoi/7b95832005eb2fa46c10c0726b849e91 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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