why does the JSON.stringify function convert string.Empty (") to" null "-String? Problem, why am I not using:
JSON.parse(json, function(key, value) { if (typeof value === 'string') { if (value == 'null') return ''; return value; } });
... is, if someone really writes "null" (very unlikely, but possible), I have a problem ...
Thanks for every answer!
json string
user187187
source share