8 lines
261 B
Markdown
8 lines
261 B
Markdown
---
|
|
title: Callback
|
|
tags: 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.
|