propertypublic
 Defined in packages/ember-runtime/lib/ext/function.js:15 
 The property extension of Javascript's Function prototype is available when EmberENV.EXTEND_PROTOTYPES or EmberENV.EXTEND_PROTOTYPES.Function is true, which is the default. Computed properties allow you to treat a function like a property: MyApp.President = Ember.Object.extend({
  firstName: '',
  lastName:  '',
  fullName: function() {
    return this.get('firstName') + ' ' + this.get('lastName');
  }.property() // Ca