I am trying to search an object for a particular value ("default"), and if found, remove the relevant object.
Object:
{foo: "default", bar: "false"}
Expected Output (Foo Removed):
{bar: "false"}
I believe that the solution lies with .filter but not quite sure..