🤯 50% Off! 700+ courses, assessments, and books

jQuery JSON to String

Sam Deering
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