String compound operator question

PaulS:

    dataString += String(sensor);

There is no need to create a temporary String to wrap the int before concatenating it. Doing so consumes more resources that necessary.

Okay, I guess the examples aren't perfect. Will try to reduce resource usage in my own programs.

Thanks again for your help.