458 B
458 B
title, type, tags, cover, dateModified
| title | type | tags | cover | dateModified | |
|---|---|---|---|---|---|
| Argument coalescing | snippet |
|
flower-portrait-1 | 2020-09-15T16:28:04+03:00 |
Returns the first defined, non-null argument.
- Use
Array.prototype.find()andArray.prototype.includes()to find the first value that is not equal toundefinedornull.
const coalesce = (...args) => args.find(v => ![undefined, null].includes(v));
coalesce(null, undefined, '', NaN, 'Waldo'); // ''