combining two let variable in javascript code example
Example 1: how to concatenate strings and variables in javascript
const helloName = name => `Hello ${name}!`
Example 2: define two variables in one line javascript
var [a,b,c,d] = [0,1,2,3]
const helloName = name => `Hello ${name}!`
var [a,b,c,d] = [0,1,2,3]