I have an object which I\'m getting by executing a function of SDK. When I try to store the object in session storage and the retrieve the object, the retrieved object looks sam
Try
sessionStorage.setItem('xyzObject', JSON.stringify(xyzObject);
And retrieve using:
JSON.parse(sessionStorage.getItem('xyzObject'));