JSFiddle - React, Tailwind, and code Playground
by Josh Pullen
JavaScript
const a = { test: true };
const b = { test: false };
console.log(a, b, a === b);
const cloneA = structuredClone(a);
const cloneB = structuredClone(b);
console.log(cloneA, cloneB, cloneA === cloneB);