My code was:
var chineseBox = {};
chineseBox.content = chineseBox;
and it returned:
{ content: [Circular] }
What does that mean?
Your object contains a circular reference. If you tried to print (or serialize) this object you would end up in an infinite loop
{content: {content: {content ...
Instead, your system was smart enough to notice the circularity and protect itself against it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With