Incrementing Or Decrementing A Property Edit Page


Problem

You want to increment or decrement a property.

Solution

Use the incrementProperty or decrementProperty methods of Ember.Object.

To increment:

1
person.incrementProperty('age');

To decrement:

1
person.decrementProperty('age');

Discussion

You can optionally specify a value to increment or decrement by:

1
person.incrementProperty('age', 10);

Example

JS Bin