const s = Symbol(); const obj = { a: 10, [s]: 7, }; const objDeepCopy = structuredClone(obj); console.log(objDeepCopy); // ??
DataCloneError
symbol