Hey, I have an array that looks like this:
[
0: "Migration, MD"
1: "Lution, MD"
2: "Mover, MD"
3: "Dee"
4: "Prov10A"
]
I would like to extract the values that contain the word "MD" in them. In other words, I want a result like this:
[
0: "Migration, MD"
1: "Lution, MD"
2: "Mover, MD"
]
Is there a way to achieve this using lodash? Thank you!