Files
30-seconds-of-code/glossary/Callback.md
2018-07-18 19:53:23 +03:00

5 lines
235 B
Markdown

### Callback
A callback function, also known as a high-order function, is a function that is passed into another function as an argument, which is then executed inside the outer function.
Callbacks can be synchronous or asynchronous.