I have following object
object = {
"key1": "value1",
"key2": "value2",
"key3": [
"arrayKey1": "arrayValue1",
"arrayKey2": "arrayValue2",
"arrayKey3": "arrayValue3"
]
};
When i am using _.omit(object, key3) is working fine. As it is removing the 'key3' correctly. but what if i want to remove the arrayKey2 only and not the whole key3 ?