I accomplished it this way, as an example from my Redux reducer:
const clone = { ...state };
delete clone[action.id];
return clone;
In other words:
const clone = { ...originalObject } // note: original object is not altered
delete clone[unwantedKey] // or use clone.unwantedKey or any other applicable syntax
return clone // the original object without the unwanted key