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
Sam Deering
View AuthorSam Deering has 15+ years of programming and website development experience. He was a website consultant at Console, ABC News, Flight Centre, Sapient Nitro, and the QLD Government and runs a tech blog with over 1 million views per month. Currently, Sam is the Founder of Crypto News, Australia.
jQuery
Share this article