I'm using Backbone, and I have a collection full of 7 models.
I want to grab one model and pull it from the collection. However, everything I try returns undefined.
Here is how I populate the collection
var coll = new TestCollection();
coll.fetch();
A simple console log call shows that the collection is populated from the JSON file
child
_byCid: Object
_byId: Object
_onModelEvent: function () { [native code] }
_removeReference: function () { [native code] }
length: 7
models: Array[7]
__proto__: ctor
However I have tried a whole bunch of approaches in order to grab one of these models from the collection including coll.at(1) and coll.get(1) but each returns undefined.
Does anyone have any ideas?