// From https://developer.mozilla.org/en-US/docs/Web/API/Window/structuredClone#description
// Create an object with a value and a circular reference to itself.
const original = ;
original. = original;
// Clone it
const clone = ;
; // the objects are not the same (not same identity)
; // they do have the same values
; // and the circular reference is preserved