
Anonymous functions 101
There are two types of functions in Javascript:
1. Custom-defined functions - such as, showModal, hideModal, etc.
2. In-built functions - such as, alert, prompt, print, etc.
And within custom-defined functions, there are three types:
1. Named functions
2. Anonymous functions
3. Arrow functions
We already know how to define