concatenarse con backticks

const name = 'Gerardo';const surname = 'Fernández';const telephone = '123 123 123';// "Old syntax"const userInfo = 'User info: ' + name + ' ' + surname + ' ' + telephone;// "New syntax"const userInfo = `User info: ${name} ${surname} ${telephone}`;
Scary Skylark