About 28,500 results
Open links in new tab
  1. JavaScript Callbacks - W3Schools

    Callbacks are often used in JavaScript, especially in event handling. User interactions, such as button clicks or key presses, can be …

  2. Callback (computer programming) - Wikipedia

    In computer programming, a callback is a programming pattern in which a function reference is passed from one context (consumer) …

  3. JavaScript Callbacks - GeeksforGeeks

    Jan 17, 2026 · Callbacks allow one function to call another at a later time. A callback function can execute after another function has …

  4. language agnostic - What is a callback function? - Stack Overflow

    May 5, 2009 · In programming words, a function leaves a reference of itself to another piece of code, e.g. by registering, and the …

  5. Callback function - Glossary | MDN

    Aug 19, 2025 · Synchronous callbacks are called immediately after the invocation of the outer function, with no intervening …

  6. CALLBACK Definition & Meaning - Merriam-Webster

    The meaning of CALLBACK is a return call. How to use callback in a sentence.

  7. How to explain callbacks in plain english? How are they different from ...

    Mar 7, 2012 · Callbacks are used as customized methods, possibly for adding to/changing a program's behavior. For example, take …

  8. Introduction: callbacks - The Modern JavaScript Tutorial

    Jun 18, 2022 · To demonstrate the use of callbacks, promises and other abstract concepts, we’ll be using some browser methods: …

  9. An Essential Guide to JavaScript Callbacks

    In this tutorial, you will learn about JavaScript callbacks and how they are used to handle asynchronous operations.

  10. Callbacks in C - GeeksforGeeks

    Jul 26, 2025 · Custom Behaviours: Callbacks allow the programmer to pass custom behaviour to functions. For example, callbacks …