omit
Omits the key-value pairs corresponding to the given keys from an object.
- Use
Object.keys(),Array.prototype.filter()andArray.prototype.includes()to remove the provided keys. - Use
Array.prototype.reduce()to convert the filtered keys back to an object with the corresponding key-value pairs.