Object.keys()
and Array.prototype.filter()
to remove the keys for which fn
returns a truthy value.Array.prototype.reduce()
to convert the filtered keys back to an object with the corresponding key-value pairs.const omitBy = (obj, fn) => Object.keys(obj) .filter(k => !fn(obj[k], k)) .reduce((acc, key) => ((acc[key] = obj[key]), acc), {});
omitBy({ a: 1, b: '2', c: 3 }, x => typeof x === 'number'); // { b: '2' }
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️