“Converting circular structure to JSON” Exception in JavaScript
Sample code to Reproduce the issue: let obj = {}; obj.a = "A"; obj.b = obj; console.log( JSON.stringify( obj ) ); JSON.stringify() method does not support the circular references. So ....