I want to return a null as a part of my JSON response
local.JSON = { "pwdstate" : null, "pwdconfirmstate" : null, "content" : "" };
...
framework.renderData().data( SerializeJSON(local.JSON) ).type( "rawjson" );
But I get an error that says Variable NULL is undefined.
How do I send back a null?
Note: Non-existence is not an option