How to Combine Multiple Strings with JavaScript

John Au-Yeung
3 min readSep 24, 2020
Photo by 🇨🇭 Claudio Schwarz | @purzlbaum on Unsplash

Combining strings is something that we have to do often with JavaScript.

In this article, we’ll look at how to combine them with JavaScript.

Plus Operator

The + operator also lets us combine multiple strings together.

For instance, we can write:

const firstName = 'james'…

--

--