I am working with an immutable object that I need to add subtract an array of values from.
I know it\'s possible using ES6 destructing with the following.
arrayToRemove.reduce((obj, key) => { const { [key]: value, ...remainder } = obj return remainder }, originalObj)