In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and interacting with the database. Let’s learn about callback in NodeJS.

What is Callback?

A callback function is a special type of function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action. Callback allows NodeJs to execute other tasks while waiting for a particular operation to complete.

The consumer of a callback-based API writes a function that is passed into the API. The provider of the API (called the caller) takes the function and calls back (or executes) the function at some point inside the caller’s body. The caller is responsible for passing the right parameters into the callback function. The caller may also expect a particular return value from the callback function, which is used to instruct further behaviour of the caller.

Types of callback function

There are two ways in which the callback may be called: synchronous and asynchronous. Synchronous callbacks are called immediately after the invocation of the outer function, with no intervening asynchronous tasks, while asynchronous callbacks are called at some point later, after an asynchronous operation has completed.

Syntax & Example of callback:

The setTimeout() function in Node.js is a typical example of callback. The following code calls the asynchronous setTimeout() method, which waits for 1000 milliseconds, but doesn’t block the thread. Instead, the subsequent Hello World message, followed by the timed message.

Example:

Output:

Hello World

This prints after 1000 ms

Example:

Finally use it with this next line:

Conclusion:

Callback allow to execute operation asynchronously in NodeJS. Use it effectively to master asynchronous programming in NodeJS. For any doubts or queries, leave a comment without any hesitation.

Click to rate this post!
[Total: 1 Average: 5]