This topic is addressed on this site for PHP and Rails but I don't see anything for standard JavaScript.
If my JSON object has a null value in a pair it looks like this id:null but I need it to look like this id:""
Since JSON doesn't support single quotes I'm unsure how to do this.
Current Result
{"id":"e6168d55-1974-e411-80e0-005056971214","label":"List","parentId":null}
Desired Result
{"id":"e6168d55-1974-e411-80e0-005056971214","label":"List","parentId":""}