The form $i` creates a temporary variable whereas `$i does not. It save CPU cycles.

Non compliant Code Example

i++  // Noncompliant

Compliant Solution

++i