What is the proper approach to remove objects from JavaScript that contain a certain field?
The following fields are available for inclusion:
filteredResult = filteredResult.filter(e => e.selectedFields.includes("Red"));
What would I do, though, if I wanted to delete this field from all properties? The documentation doesn't appear to include a "Remove" button.