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;
+= 1;
counter // counter = 1;
-= 1;
counter // counter = 0;
The counter variable