A Map is cloned with structuredClone. What is true of the resulting clone and its entries?const m = new Map([['k', { x: 1 }]]); const c = structuredClone(m); console.log(c instanceof Map, c.get('k') === m.get('k'), c.get('k').x);