Sometimes, we want to do deep clone in JavaScript.
In this article, we’ll look at how to do deep clone in JavaScript.
How to do deep clone in JavaScript?
To do deep clone in JavaScript, we use the structuredClone
function.
For instance, we write
const original = { name: "example" };
const clone = structuredClone(original);
to call structuredClone
with the original
object to return a deep clone of the original
object.
structuredClone
is built into modern browsers.
Conclusion
To do deep clone in JavaScript, we use the structuredClone
function.