String literal is a effective way to make string using defined variables.
const var1 = 'hello' const var2 = 'world' const StrLit = `${var1}, ${var2}!!` console.log(StrLit)
hello world!!