Chaînes de modèle dans ES6

function hello(firstName, lastName) {
  return `Good morning ${firstName} ${lastName}! 
How are you?`
}

console.log(hello('Ranjeet', 'Andani'))
Outrageous Ostrich