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

4 lines
58 B
JavaScript

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