Hello everybody!
I'm learning Java programming and have a really, really dumb question to ask.
When writing a line with a counter, such as:
for (var count = 0; count < aString.length; count ++)
what does the ++ do? I've seen it in lots of code and it is mentioned in my book, but what does it actually do?
Cheers!