.create() makes a new instance of the model in the Collection.
var CollectionDemo = Backbone.Collection.extend({
model : ModelDemo //The model 'ModelDemo' is specified by overriding the 'model' property
});
var collectiondemo = new CollectionDemo();
collectiondemo.create({
Name:"John Smith",
Country:"Mars"
});
}
});