Skip to content

Latest commit

 

History

History

hello-name

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
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?