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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:44:57+00:00 2026-05-29T04:44:57+00:00

can anyone help me on how to retrieve function parameter names? For example: var

  • 0

can anyone help me on how to retrieve function parameter names? For example:

var A = function(a, b, c) {};

I need to get the parameter names outside the function, which is a, b, and c (as in literally as strings, such as to be put in an array [“a“, “b“, “c“]), so I can validate not only object/class properties in a class towards an interface, but also the parameters.


Before this question starts raising confusion, let me explain about interface implementation in my term and the reason why I need the answer of the question above:

First of all, I found one interesting way I would like to use in implementing interface by Glen Ford in JavaScript:

for (var member in theInterface) {
    if ( (typeof theObject[member] != typeof theInterface[member]) ) {
        alert("object failed to implement interface member " + member);
        return false;
    }
}

(Please see the detail about the implementation from http://knol.google.com/k/programming-to-the-interface-in-javascript-yes-it-can-be-done-er-i-mean-faked#).

However, the implementation above only validates the object properties (variable and methods) only, which is not enough for me.

I need more validation to parameter level, so that the code that implements one interface should follow the interface methods and also follow the parameters from the interface methods as well.


PS. Please don’t argue about why use interface or why it’s useless or useful; instead it’s most useful if you can provide better interface implementation. The focus here is I just need to know how to get function parameter names.

  • 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-29T04:44:58+00:00Added an answer on May 29, 2026 at 4:44 am

    I doubt that there is any decent way to this, in javascript parameter values can be of different type when passed, the types doesn’t matter but the order thus.

    This might not be the answer that you are looking for but this could help at least.

    function test(a,b,c,d) {
    
    }
    
    //this will give us the number of parameters defined in the a function.
    confirm(test.length); 
    

    To really know the names you can parse the function definition

      var str = window['test'].toString();
       //str will be "function test(a,b,c,d){}"
    

    Below is a simple parsing test I made:

    function test(a,b,c,d)
    {
    
    }
    
    var b = function(x,y,  z){};
    alert(getFnParamNames(b).join(","));
    alert(getFnParamNames(test).join(","));
    
    function getFnParamNames(fn){
        var fstr = fn.toString();
        return fstr.match(/\(.*?\)/)[0].replace(/[()]/gi,'').replace(/\s/gi,'').split(',');
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

can anyone help? I have a simple html file which i am filling via
Can anyone help me to rewrite the below code which use a fade effect
Can anyone help, how to retrieve exactly 2nd row from the table in oracle?
Can anyone help explain why the code below fails to retrieve the html Dim
Can anyone help me with the trying to write SQL (MS SqlServer) - I
Can anyone help with with the time complexity of this algorithm, and why it
Can anyone help? I have been designing a site using Javascript but the rest
can anyone help me in trying to check whether JavaScript is enabled in client
Can anyone help? I have been using the entity framework and its going well
can anyone help me with construction of an IF in a stored procedure in

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.