increment operator code example
Example 1: increment
Increment is the sum of all the user stories
completed during a sprint and the value of the
increments of all previous Sprints.
Example 2: Postfix increment
let x = 3;
y = x++;
Example 3: Prefix increment
let a = 2;
b = ++a;