I am trying to figure out what the "null" means?
JSON.stringify(myJsonObj, null, 2)
I see people using "undefined" or "null"
Couldn't figure out what the "null" was for so I just removed it.
JSON.stringify(myJsonObj)
So now I start getting these
TypeError: Converting circular structure to JSON
at JSON.stringify (<anonymous>)
Could this be the reason?
What exactly does Null do?