Bug WRT Javascript JSON in Acrobat Pro DC
Does anybody else see this same behavior?
Script:
var ary = [];
ary["sam"] = "test string";
console.println("The array value is " +ary["sam"]);
console.println("JSON says: " +JSON.stringify(ary));
Output:
The array value is test string
JSON says: []
