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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T13:48:26+00:00 2026-06-16T13:48:26+00:00

Why do we need apply method inside the constructor to invoke any method defined

  • 0

Why do we need apply method inside the constructor to invoke any method defined on the prototype object?

Code working:

    function Test(){
    this.x = [];
    this.add.apply(this,arguments);
    }

    Test.prototype.add = function(){
    for(var i=0; i < arguments.length; i++){
    this.x.push(arguments[i]);
    }
    }

    var t = new Test(11,12)

    t.x          //[11,12]  this is fine
    t.x.length   //2 this is also fine

But when i directly call add inside constructor

Code not working:

    function Test(){
    this.x = [];
    this.add(arguments);
    }

    Test.prototype.add = function(){
    for(var i=0; i < arguments.length; i++){
    this.x.push(arguments[i]);
    }
    }

    var t = new Test(11,12);
    t.x.length; //1 Not added all elements why?

enter image description here

  • 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-16T13:48:28+00:00Added an answer on June 16, 2026 at 1:48 pm

    This hasn’t got anything to do with prototypes, it’s got to do with how apply takes an array and then uses the values as arguments to the function to call. In this case, if you do

    this.add(arguments);
    

    It’s doing exactly that. Calling add with the first argument being an array-like object, and you end up with x being an array where the first element is an array. new Test(1, 2, 3) will result in x = [ [1, 2, 3] ] (the inner array is actually an Arguments object, but it resembles an array). However if you do

    this.add.apply(this, arguments);
    

    It’s essentially doing

    this.add(arguments[0], arguments[1], arguments[2], ...);
    

    And this way x ends up being an array of those elements, instead of an array within an array. I.e., with new Test(1, 2, 3) you’ll get x = [1, 2, 3], without the extra array inbetween.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any method that invokes a function but sets the context this to
Need to apply a filter to a file like this: TUPAC_0006:1:1:2554:2356#0/1 0 * 0
I have this method inside an Activity which implements an ImageLoader class: public void
I have the following code example : Application.Polyfills.prototype.prettifyCode = function(enable, js_lib, css_lib) { return
Using CoreGraphics (inside my drawRect method), I'm trying to apply a blend mode to
I know this is a long-shot, but since I need this code to work,
I need to apply tint effect on image in Android . But the tint
I need to apply validation on input time intervals that are taken in as
I need to apply paragraph formatting to a selection in a rich text box.
I need to apply/remove to an input field according to a user's selection 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.