Files
30-seconds-of-code/snippets/coalesce.md
2017-12-17 11:39:24 -08:00

9 lines
233 B
Markdown

### Coalesce a set of arguments
Use `find()` to return the first non null/undefined argument.
```js
const coalesce = (...args) => args.find(_ => ![undefined, null].includes(_))
// coalesce(null,undefined,"",NaN, "Waldo") -> ""
```