This code fails with an exception indicating invalid JSON:
var example = \'{ \"AKEY\": undefined }\'; jQuery.parseJSON(example);
I was able
No, but null is. RFC 4627 §2.1:
null
A JSON value MUST be an object, array, number, or string, or one of the following three literal names: false null true
A JSON value MUST be an object, array, number, or string, or one of the following three literal names:
false null true
var example = '{ "AKEY": null }';