comitando greeting

This commit is contained in:
Moises Antonio Hernandez Ferrer Gonçalves 2022-11-01 21:12:27 -03:00
parent c6f6df9c59
commit d95a9b5525

View File

@ -1,4 +1,8 @@
export function greet(name) {
// implementar logica aqui
return "";
return "Hello " + name
}
console.log(greet("Maria"), "Hello Maria")// hello Maria
console.log(greet("Alvin"), "Hello Alvin")// hello Alvin
console.log(greet("Pedro Lucas"), "Hello Pedro Lucas")// Pedro Lucas