The add() method is used to add some specified objects into a new collection and returns the newly created collection.
Syntax:
add(...object)
Parameters: This method accepts a parameter as mentioned above and described below:
- object: This parameter holds the objects to add into a collection.
Return Value: This method returns the newly created collection.
Example 1:
Javascript
<!DOCTYPE html> Â
<html> Â
<head> Â Â Â <script src= Â Â Â </script> Â
   <script type= "text/javascript" src=    </script> Â
   <script type= "text/javascript" src=    </script> </head> Â
<body>    <script type= "text/javascript" >            // Calling add() function to add its        // parameters into a collection of objects        console.log(fabric.Collection.add(1, 2, 3));        console.log(fabric.Collection.add( "a" , "b" , "c" ));        console.log(fabric.Collection.add( "gfg" ));    </script> Â
</body> Â
</html> |
Output:
{"_objects":[1,2,3]} {"_objects":[1,2,3,"a","b","c"]} {"_objects":[1,2,3,"a","b","c","gfg"]}
Example 2:
Javascript
<!DOCTYPE html> Â
<html> Â
<head> Â Â Â <script src= Â Â Â </script> Â
   <script type= "text/javascript" src=    </script> Â
   <script type= "text/javascript" src=    </script> </head> Â
<body>    <script type= "text/javascript" >            // Specifying some objects        var obj1 = {name: "GFG" };        var obj2 = {Department: "Computer Science" };        console.log(fabric.Collection.add(obj1, obj2));    </script> Â
</body> Â
</html> |
Output:
{"_objects":[{"name":"GFG"},{"Department":"Computer Science"}]}