005 Desarrollo
005.1 Desarrollo

Incremento y Decremento

A common operation that you’ll need is to be able to increment or decrement a variable. In Dart, this is achieved like so:

var counter = 0;

counter += 1;
// counter = 1;

counter -= 1;
// counter = 0;

The counter variable