Old Guides - You are viewing the guides for Ember v1.12.0. Go to v5.0.0 Setting Multiple Properties At Once Problem You want to set multiple properties on an object with a single method call. Solution Use the setProperties method of Ember.Object. person.setProperties({ name: 'Gavin', age: 36 }) On this page Problem Solution