Open In App

Backbone.js clone Collection

Last Updated : 26 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Backbone.js clone Collection is a function used to form a new instance of the collection with an identical list of models. This method returns a copy of the collection and initiates a new instance of the collection with its list of models. 

Syntax: 

collection.clone() ;

Parameters: This method doesn’t take any argument. 

Example 1: In this example, we will illustrate the Backbone.js clone Collection. We will copy one collection and initiate a new instance. 

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>BackboneJS clone collection</title>
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>BackboneJS clone collection</h3>
      
    <script type="text/javascript">
        var Book = Backbone.Model.extend();
  
        var b1 = new Book({ 
            title: "Ram", 
            Author: "Amish Tripathi", 
            vol: 1 
        });
          
        var b2 = new Book({ 
            title: "Lolita", 
            Author: "Vladimir Nabokov", 
            vol: 2 
        });
  
        var books = Backbone.Collection.extend({
            model: Book,
        });
  
        var Library = new books([b1, b2]);
          
        document.write(`Original collection is : 
            ${JSON.stringify(Library)} <br>`);
  
        var temp = Library.clone();
  
        document.write(`Clone collection is : 
            ${JSON.stringify(temp)}`);
    </script>
</body>
  
</html>


Output:

Backbone.js clone Collection

Example 2: In this example, we will clone one collection and see whether methods are copied or not. 

HTML




<!DOCTYPE html>
<html>
  
<head>
    <title>BackboneJS clone collection</title>
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>BackboneJS clone collection</h3>
      
    <script type="text/javascript">
        var Book = Backbone.Model.extend();
  
        var b1 = new Book({ 
            title: "Ram", 
            Author: "Amish Tripathi", 
            vol: 1 
        });
  
        var books = Backbone.Collection.extend({
            model: Book,
            print: function () {
                document.write(JSON.stringify(this), "<br>");
            }
        });
  
        var Library = new books(b1);
        document.write("Print function of original collection : ");
        Library.print();
  
        var temp = Library.clone(b1.get('vol'));
        document.write("Print function of clone collection : ");
        temp.print();
    </script>
</body>
  
</html>


Output:

Backbone.js clone collection

Reference: https://backbonejs.org/#Collection-clone



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads