Slide 35
Slide 35 text
App.president = Ember.Object.create({
firstName: "George W.",
lastName: "Bush",
fullName: function() {
return this.get('firstName') + ' ' +
this.get('lastName');
}.property('firstName', 'lastName')
});
App.president.set('firstName', 'Barack');
App.president.set('lastName', 'Obama');
Friday, November 9, 12