- DeserializeJSON of null value
result = deserializeJSON('{"test": null}');
writedump(result);
writeoutput(result.test);
In CF9, result.test is string value: "null".
In CF10, the above code will have error, because result.test is "undefined".
Tips that make life of a software engineer easier. Well, not exactly. Some posts are open questions that I haven't found an answer ... yet
result = deserializeJSON('{"test": null}');
writedump(result);
writeoutput(result.test);