I have the following string, where I would like to remove all instances of EUR
var str = "200.00 EUR, 33.33 EUR, 100.95 EUR, 300 EUR";
So the output is:
var str = "200.00, 33.33, 100.95, 300";
I tried
var res = str.replace("EUR", "");
But that only removes EUR one time.