Investigating ember's computed properties
App.Person = Ember.Object.extend({ firstName: "Tom", surname: "Close", name: function() { return this.get('firstName') + " " + this.get('surname'); }.property('firstName', 'surname'), }); var tom = App.Person.create(); tom.firstName // »