From d00cfd4c549c21a72fd1d6ed251c8a77f114503f Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 16 Jul 2018 20:45:40 +0300 Subject: [PATCH] Add glossary/callback --- glossary/callback.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 glossary/callback.md diff --git a/glossary/callback.md b/glossary/callback.md new file mode 100644 index 000000000..ac843d2b7 --- /dev/null +++ b/glossary/callback.md @@ -0,0 +1,4 @@ +### 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.