JSFiddle - React, Tailwind, and code Playground

by walker

JavaScript

obj = { x:555, y: "hi" };
obj.myself = obj;

try{
    json = JSON.stringify(obj);
    alert(json)
}catch(e){
    alert(e);
}