I have the following string:
var my_fruits = "Apples, Bananas, Mangos, Blackberries, Oranges";
I want to remove "Mangos" (or any other fruit by giving a name) so that the new string would look like this:
"Apples, Bananas, Blackberries, Oranges".
How can i achieve this with/without JQuery?
Thanks in advance.
Regards