The Backbone.JS Pop() collection method is used to remove the models from the collection.
Syntax:
Backbone.Collection.Pop ( models, options )
Parameters:
models: This parameter is used to specify the models to be removed from the collection.
options: This parameter is used to specify the model types.
Example:
Example
Output:
Number of numbers added: 3 Number of remaining numbers: 2
Explanation:
In the above example, the Pop() method removes a model from the collection.