how to mix 2 var into one string js code example
Example 1: how to concatenate strings and variables in javascript
const helloName = name => `Hello ${name}!`
Example 2: javascript join 2 variables into string
A = 'hello ';
B = 'world!';
// outputs "hello world!"
console.log(A + B);