Skip to content

Instantly share code, notes, and snippets.

@petamoriken
Created September 22, 2021 00:11
Show Gist options
  • Save petamoriken/09664e89a7765d4f307168eee0558552 to your computer and use it in GitHub Desktop.
Save petamoriken/09664e89a7765d4f307168eee0558552 to your computer and use it in GitHub Desktop.
// HTML Standard
const { map, arr, obj } = structuredClone((() => {
const [map, arr, obj] = [new Map(), [], {}];
map.a = "a"; arr.b = "b"; obj.c = "c";
return { map, arr, obj };
})());
console.log(`${map.a} / ${arr.b} / ${obj.c}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment