你还在用JSON.parse(JSON.stringify(o)) 深拷贝对象吗?JavaScript 中深拷贝对象的现代方式
您知道吗,JavaScript现在有一种本地内置的方法可以进行对象的深层复制?没错,这个structuredClone函数内置于JavaScript运行时中:jsx复制代码constcalendarEvent={title:"Builder.ioConf",date:newDate(123),attendees:["Steve"]}//constcopied=structuredClone(cal