Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 600 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 600 Bytes
difficulty OAs projects
newbie
strings
cipher
card validation

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?