
JavaScript Basics #8: Strings
In the previous article, we assigned a string to a variable (let myName = ‘Jan’;). Now, let’s see how to concatenate and interpolate strings. Concatenation Concatenation is a fancy word for combination, and it’s performed with a + operator. It allows us…