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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:21:11+00:00 2026-05-25T18:21:11+00:00

I am trying to simply detect that current method has which parameters so i

  • 0

I am trying to simply detect that current method has which parameters so i am calling arguments in chrome developer tools while i pause execution in that method. But arguments returns [] empty array. But if i try to put some parameters inside function so this time arguments and parameters get filled. There is no anything wrong about this ?

Example:

function(){
  console.log(arguments);//value is []
}

function(a,b,c){
  console.log(arguments);//value is not not empty array. It contains few parameters.
}

I don’t understand how can it be ?

Edit :

Now i check it and it works but let me tell you when it is not working.

I simply use debugger then open console and write arguments and enter. Result is [] but if i using arguments in function and i see that it is filled correctly. So why just referencing arguments in console product [] result ?

  • 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-25T18:21:11+00:00Added an answer on May 25, 2026 at 6:21 pm

    Sorry if this doesn’t answer your question… it’s a little hard to understand what your actual question is…

    If you’re trying to find how many arguments a function expects, then you can use .length:

    f0 = function () { };
    f1 = function (a) { };
    f2 = function (a, b) { };
    
    f0.length; // 0
    f1.length; // 1
    f2.length; // 2
    

    Source: http://es5.github.com/#x15.3.5.1


    If you’re trying to find how many arguments a function received then you can use arguments.length. Note that it has nothing to do with the number of expected arguments.

    f = function () {
        return arguments.length;
    };
    
    f();     // 0
    f(1);    // 1
    f(1, 1); // 2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm simply trying to convert a CGEventTimestamp (which is an unsigned 64-bit integer roughly
I've been racking my brains on this for a while, I'm simply trying to
Simple question: How do I detect that the onscreen keyboard has been displayed on
I'm trying to figure out how to detect whether a binary has been compressed
Trying to use NUnit to test a method that adds an object to a
I'm trying to write a small utility service that will detect when a item(s)
I'm simply trying to create a UML diagram where I can show the header
I'm simply trying to crop a JPEG image (no scaling) using PHP. Here is
I am simply trying to draw a rectangle inside of a panel using flex4.
I'm trying to simply save a file. However, I need a filename entered without

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.