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

5 lines
83 B
JavaScript
Raw Normal View History

export function greet(name) {
2022-11-02 18:55:13 +00:00
const phrase = `Hello ${name}`;
return phrase;
}