JS Concat Variable and String
const txt = "My name is"
console.log(`${txt} Paul`);
Chris
const txt = "My name is"
console.log(`${txt} Paul`);
const helloName = name => `Hello ${name}!`