Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1928674
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T07:00:28+00:00 2026-05-17T07:00:28+00:00

I am trying to understand callback functions in javascript. There is a function something

  • 0

I am trying to understand callback functions in javascript.

There is a function something like

function load() {

 var func = function(data){
  ///

 };
}

Can anyone explain me from where the parameter “data” will be returned, as I dont see any variable declared in the file.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T07:00:28+00:00Added an answer on May 17, 2026 at 7:00 am

    In JavaScript, functions are first class objects. You could store them in objects (variables) and pass them around as arguments to functions. Every function is actually a Function object.

    You don’t have a callback function in that example. You’d have one when you pass a function as an argument to another function.

    This is a function that invokes a callback function when it is ready:

    function load (ready_callback) {
       // do some stuff
    
       ready_callback();
    }
    

    Which can be invoked as follows:

    function callback () {
       alert('Ready');
    }
    
    load(callback);
    

    Or:

    var callback = function () {
       alert('Ready');
    }
    
    load(callback);
    

    Or:

    load(function () {
       alert('Ready');
    });
    

    The above three example are pretty much equivalent.

    Callback functions are typically used for event handling and asynchronous methods. One example is the setTimeout() method, which invokes a callback function when a timeout expires:

    var timerCallback = function () {
       alert('Timeout Expired!');
    }
    
    setTimeout(timerCallback, 5000);  // Set the timeout to 5 seconds
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been trying to understand Javascript closures, and thought I was onto something. I
I am studying PHP and i am trying to understand about callback functions, I
Trying to understand something. I created a d:\svn\repository on my server. I committed folders
I'm trying to load some external content using jQuery load function to div on
I'm relatively new to JavaScript and I thought I knew how callback functions worked
I'm trying to build a jQuery.live like function. Helper is a class that has
I was trying to understand c++0x std::bind and std::function usage in event handling /
I'm a bit confused in how functions operate in javascript. I understand that they're
Hi I am trying to pass a callback which is a member function. I
I am trying to understand how far I can go with PHP5's closures/callbacks, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.