Ember - this.get(one from an array)
问题 So I've got two versions of this question, one a little simplified, one a bit more like what I'm trying to achieve. I have a "student" model and a "score" model. The "student" has many "scores". On the "student" controller, I'm trying to set a computed property "score" equal to a specified one of these "scores". Is there some way I can pass in another argument (eg, so as return the first in the array)? In controllers/student score: function(){ return this.get('scores', 1); }.property('scores'