Is there a way to easily clone Backbone Collection? I wonder why there is no build in method like for models. My problem is that I have a model holding a collection of childs. W
Use the Backbone Collection clone() method:
var clonedCollection = myCollection.clone();