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

4 lines
57 B
JavaScript

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