i have a value like the following : ...India in this i want to remove ... if it is exist in the value.
How to do this using underscore.js or jquery or javascript ??
Thanks
You can do this with the basic JavaScript replace method
var myString = myString.replace('...','');
If you need more complex replacing then you will probably want to look into using a RegEx pattern.
var myString = myString.replace('...,'');