There are a ton of great questions/ answers related to searching / looping through an Array of Strings and matching a given Substring but I couldn't readily find a concise example that uses Lodash to delete / remove any array element that DOES include the desired search substring.
The best resource I found for searching / matching against an array of strings is this question (several good answers): Use lodash to find substring from array of strings
None of those answers appeared to be readily applicable to immediately removing the item IF it matched (true) against the search / substring.
Is there an easy way to loop through an array of strings and delete items that match using Lodash?
While other options are on the table we would ideally want to use Lodash since we already depend on this for many similar functions.