feat:implementação algoritmo que retorne uma string composta pela palavra Hello + texto

This commit is contained in:
Ueber James Santos 2022-10-28 01:07:49 -03:00
parent b78dc99fb3
commit 42db9b47ae

View File

@ -1,4 +1,5 @@
export function greet(name) {
// implementar logica aqui
return "";
let hello = `Hello ${name}`
return hello;
}