A value that is incremented or decremented and then not stored is at best wasted code and at worst a bug.

Noncompliant Code Example

var i = 0;
i = i++; // Noncompliant; i is still zero

Compliant Solution

var i = 0;
i++;