Deep copying objects in Angular

You can also use:

JSON.parse(JSON.stringify(Object))

if it’s on your scope, it’s in every Angular component, directive, etc. and it’s also on every node environment.

Unless you have a circular reference, it should work and will effectively dissociate your variable reference to the original object.

Leave a Comment