jQuery JSON to String
Share
Simple JavaScript function to convert a JSON string into a comma seperated item quoted list for display.
Also see jsfiddle for JSON.stringify https://jsfiddle.net/ifandelse/6Yj5h/
//helper function to convert json to string
stripJsonToString: function(json)
{
return JSON.stringify(json).replace(',', ', ').replace('[', '').replace(']', '');
},
//email@email.com, example@example.com, somebody@somewhere.com