Strings have been a feature of JS since the very first version, but nowadays there are some more features available.
Working with strings
How to do it...
In the following sections, we'll see many functions that we'll be using through the rest of this book, such as interpolation (to build up strings out of several parts) or tagged strings (which we'll use to style components in the Creating StyledComponents for inline styling section of Chapter 7, Enhancing Your Application), to show just two examples.
Interpolating in template strings
Everybody has, at one...