Javascript: How To Add Comma In Between Two Object In String Object But Not Last Object
I have string object but and stored in variable pass from another class. How can I add comma in between two object but not last object. The following below is my code. { '
Solution 1:
You can use Regex for this:
JSON.parse('[' + string.replace(/}\s*{/g, '},{') + ']');
Post a Comment for "Javascript: How To Add Comma In Between Two Object In String Object But Not Last Object"