Skip to main content

What is a callback function?

Entry NodeJS
Quick Answer A callback is a function you pass to another function to be called when an operation finishes. In Node.js: fs.readFile('file.txt', callback) รขโ‚ฌโ€ Node reads the file async and calls your callback when done. Callbacks are the original way to handle async operations before Promises and async/await made it cleaner.

Answer

A callback is a function passed as an argument to execute after an asynchronous task finishes.
S
SugharaIQ Editorial Team Verified Answer

This answer has been peer-reviewed by industry experts holding senior engineering roles to ensure technical accuracy and relevance for modern interview standards.

Want to bookmark, take notes, or join discussions?

Sign in to access all features and personalize your learning experience.

Sign In Create Account

Source: SugharaIQ

Ready to level up? Start Practice