4 Ways to Combine Strings in JavaScript

Here are four ways to combine strings in JavaScript. My favorite way is using Template Strings. Why? Because it’s more readable, no backslash to escape quotes, no awkward empty space separator, and no more messy plus operators 👏
const icon = '👋';// Template Strings
`hi ${icon}`;// join() Method
['hi', icon].join(' ');