i have comma separated string like
var test = 1,3,4,5,6,
i want to remove particular character from this string using java script
can a
you can make use of JavaScript replace() Method
replace()
var str="Visit Microsoft!"; var n=str.replace("Microsoft","My Blog");