challenge-algorithms-v2.0-m.../01-greeting/index.js
2022-11-02 15:55:13 -03:00

5 lines
83 B
JavaScript

export function greet(name) {
const phrase = `Hello ${name}`;
return phrase;
}