| Level Navigation: 1 | (2ℹ️) | 3 | 4 | 5 | 6 | (7ℹ️) | (8ℹ️) | (9ℹ️) | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | (37ℹ️) | 38⚡ | 39⚡ | 40⚡ | 41⚡ | 42 | 43⚡ | 44⚡ | 45 | 46 | (47ℹ️) |
makeGreetingLet’s start with the first greeting function. Create a function that takes a name and an occasion, and returns a greeting message.
Function signature:
makeGreeting(name, occasion) → string
Examples:
makeGreeting('Alex', 'Birthday') → "Happy Birthday, Alex!"makeGreeting('Sam', 'New Year') → "Happy New Year, Sam!"Your task:
makeGreeting first (red)Try it: Create greeting.test.js and greeting.js, then write your tests and function!