refactor(greet): melhorando código funcão

This commit is contained in:
Caroline Moran 2022-10-28 07:33:29 -04:00
parent 1e61b5ddd8
commit 8a8712c9ae

View File

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