Having a problem where if I do
apples = new Apples
apples.fetch()
console.log apples
console.log apples.models
console.log apples
will out put the Apples Collection, with models: Array(10)
listed inside the object.
But, console.log apples.models
outputs an empty array.
Why does this happen?
Thanks in advance.