hey i have this array
[
0: "Migration, MD"
1: "Lution, MD"
2: "Mover, MD"
3: "Dee"
4: "Prov10A"
]
how to get the value which has the word MD in it like which has MD it should give me something like this
[
0: "Migration, MD"
1: "Lution, MD"
2: "Mover, MD"
]
how can i do that with lodash? thanks
MDseparated by word boundaries (spaces, punctuation marks, etc.) ?