At the JSON site it says
JSON does not support cyclic data structures, so be careful to not give cyclical structures to the JSON stringifier. <
JSON does not support cyclic data structures, so be careful to not give cyclical structures to the JSON stringifier.
if you have:
var a = {value: 'a'}; var b = {value: a}; var c = {value: a};
In JSON for b it would look like:
"{value: {value: 'a'}}"
In JSON for c it would look like:
No pointers.