In our backbone app, we have a profile model. It has an attribute "completeness" that is an array containing the fields the user has not added to their profile (like profile picture, full name, etc).
In order to easily do listenTo on this array, I'm trying to create a collection to replace the array. My idea is to keep the array in the profile model, and to create a progfileProgress model that gets data from the array in the profile. Then to add this to a collection "Completeness".
How can I juggle the data from the first model into the second collection?