This commit is contained in:
Maria Carolina Oliveira da Silva 2022-10-28 22:54:50 -03:00
parent c6f6df9c59
commit 19864847bf

View File

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