const txt = "My name is"
console.log(`${txt} Paul`);
const helloName = name => `Hello ${name}!`
let first_string = 'I am a programmer, ';
let second_string = 'I am indisposable.';
let what_i_said = first_string + second_string;
console.log(what_i_said);
/* OR
*/
let tell_my_boss = first_string.concat(second_string);
console.log(tell_my_boss);
['Hello', ' ', 'World'].join(''); // 'Hello World'