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

5 lines
61 B
JavaScript

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