Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumJavaScriptstructuredCloneSingle-choice MCQ

What does structuredClone do when the input object contains a function value on one of its properties?

const obj = { fn: () => 1, n: 2 }; structuredClone(obj);