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

6 lines
61 B
JavaScript

export function greet(name) {
return "Hello " + name
}