I know in some languages the following:
a += b
is more efficient than:
a = a + b
because it removes the n
In virtually all cases, the two produce identical results.