I have the following array:
[{object}, {object}, {object}]
Each object looks something like:
{key0: 3, key1: undefined, key2: 7}
I want to filter the array for undefined properties so that each object in the array now looks like:
{key0: 3, key2: 7}
I've tried everything with Lo_Dash and I'm thinking I must be going crazy.