fix: template string algoritmo 1

This commit is contained in:
Patrick Reis Santos 2022-10-30 15:32:33 -03:00
parent b285c40b53
commit 505f3a5dd4

View File

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