I have some code as example in below:
var andThingys = $('.AndsovKeywordArr').eq(i).text();
andThingys.replace(/\+/g,',');
var res1 = andThingys.split(",");
console.log(res1);
it returns something like "andKeywords":["bsadbd+sbdsbsdb","nfdndf+nfdndfnnfd"]
but i want to change all the "+" to "," for those array elements,
how may i do that?
The result i'd like to see, looks like below:
`"andKeywords":["bsadbd,sbdsbsdb","nfdndf,nfdndfnnfd"]`