helloName
helloName
https://the-winter.github.io/codingjs/exercise.html?name=helloName&title=String-1
Implementa la función helloName
para que dado un string name,
por ejemplo "Bob", retorne un saludo de la forma "Hello Bob!".
Ejemplo
helloName('Bob') → "Hello Bob!"
helloName('Alice') → "Hello Alice!"
helloName('X') → "Hello X!"
Pistas
- ¿Cómo puedes unir (concatenar) dos
strings
?