> For the complete documentation index, see [llms.txt](https://learning.pavey.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learning.pavey.dev/javascript/activities/greeter-function.md).

# Greeter Function

### Task:

Make a function which accepts a single argument - a person's name - and uses this name to greet them by printing to the console.

For example, I might expect to use the function like this:

```
greetByName('Cameron Pavey');
Hello Cameron Pavey, how are you today?
```

### Bonus:

If the name provided is YOUR name, make it give you a special greeting
