challenge-algorithms-v2.0-B.../01-greeting/index.js

6 lines
110 B
JavaScript

export function greet(name) {
// implementar logica aqui
const frase = `Hello ${name}`;
return frase;
}