readString += c?

Hello sir. what is the of this "readString += c" ?

The two characters '+=' mean add to.

For example myVar += 2; is the same as myVar = myVar + 2;

...R