I have a JSON object of format:
obj {
name: "abc" ,
entriesList : "list of entry obj" ,
propertiesList : "list of properties obj"
};
where entry is also another object
entry {
info : "data obj" ,
age : "15" ,
subjects : "5"
}
properties {
a : "a" ,
b : "b"
}
data {
c : "c" ,
d : "d"
}
Using JSON.stringify()
it is giving error
cyclic object value
How should I convert my object to JSON string?