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 8498349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:22:40+00:00 2026-06-11T00:22:40+00:00

I wonder if it is possible to show a library user that a function

  • 0

I wonder if it is possible to show a library user that a function needs a callback with let’s say 5 parameters 3 of which are arrays (for example).
Or in other words, how to inform the programmer not to mess up with the callback arguments?
Here’s a code example:

function doSomething(someArray, callback) {
    var i = 0;
    for ( i = 0; i < someArray.length; i += 1) {
        callback(someArray[i]);
    }
}

How a programmer would find out what parameters should their callback function accept?

  • 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-06-11T00:22:42+00:00Added an answer on June 11, 2026 at 12:22 am

    Javascript does not have type checking for arguments and there is no way for you to do runtime checking of a callback to see what arguments it is expecting. One thing you can do at runtime is you can check callback.length to see how many arguments it has declared that it is expecting as formal parameters. It is not required for a function to define it’s formal parameters as it can also use the arguments object to get the arguments, but if you wanted to force them to program a certain way, you could check it this way. See this doc for more info.

    Your best option is good documentation to make it absolutely clear (often with sample code too) how a callback should be written.

    If you want to bulletproof your library a bit, you could catch any exceptions that were thrown in the callback and handle them however is appropriate.

    function doSomething(someArray, callback) {
        var i = 0;
        for ( i = 0; i < someArray.length; i += 1) {
            try {
                callback(someArray[i]);
            } catch(e) {
                // handle any exception in the callback
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wonder if it's possible to show a warning or open a pop-up, which
I just had an idea that I wonder whether is possible in java. Let's
I wonder if it is possible to user Jquery ui datepicker to only show
I wonder if it is possible to show OSM ( Open Street Maps )
I wonder if it's possible to add an Event Listener to a MovieClip that
I wonder if it's possible to create an extension method which has functionality &
I wonder if is it possible to run mysql command which can select an
I wonder if it's somehow possible to use the stop() function (I normally use
I wonder is it possible to write a console application that will surf to
I wonder if it is possible to show data values on levelplot (lattice package)

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.