DEV Community

Discussion on: Deep vs Shallow Copy - with Examples

Collapse
 
stereobooster profile image
stereobooster

cursed code

function structuralClone(obj) {
  const oldState = history.state;
  history.replaceState(obj, document.title);
  const copy = history.state;
  history.replaceState(oldState, document.title);
  return copy;
}

source dassur.ma/things/deep-copy/