Quick Recap

We'll cover the following...
  • As mentioned in one of the previous chapters, classes can implement the += and + operators differently. For concatenating more than two strings, += is faster.
  • To make giant strings iteratively, it is better to
...