Strings de modelo em ES6
function hello(firstName, lastName) {
return `Good morning ${firstName} ${lastName}!
How are you?`
}
console.log(hello('Ranjeet', 'Andani'))
Outrageous Ostrich