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

6 lines
102 B
JavaScript
Raw Normal View History

export function greet(name) {
// implementar logica aqui
2022-10-29 18:38:23 +00:00
return `Hello ${name}`;
}
2022-10-29 18:38:23 +00:00
2022-10-29 18:43:08 +00:00
greet("Alvin")