DEV Community

Discussion on: Javascript: Clone object

Collapse
 
r9n profile image
Ronaldo Modesto

It is important to point out that the use of Object.assign must be done with care as it can open a gap for attacks like Prototype Pollution. Ideally, when using this method, make sure that the data of the object to be cloned has already been properly sanitized.
But it was a good tip anyway, for those new to javascript it's good to know how to do what 😀