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

  • Home
  • SEARCH
  • 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 6134605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:22:35+00:00 2026-05-23T17:22:35+00:00

Influenced by jQuery, I’m experimenting with method chaining in javascript. I constructed a wrapper

  • 0

Influenced by jQuery, I’m experimenting with method chaining in javascript. I constructed a wrapper around an array which will accept coordinate points and transform methods. It’s general syntax is something like:

myPath = new Path().move({x:50,y:50}).line({x:20,y:20}).rotate(Math.PI/3);

it works well, and it makes it somewhat more readable than a string of coordinates. However now I want to be able to duplicate the existing path by doing a concatenation of
its reversed self:

// create a symmetrical path.
myPath = new Path().move().line().etc().etc.concat(myPath.reverse());

But that fails because myPath is unknown as argument to concat. It works when i do:

var myPath = new Path();
myPath.move().line().etc().etc().concat(myPath.reverse());

But I’m wondering is there a construct other and shorter than above to immediately assign the new Object to the variable definition?
If its not possible in Javascript, i’d be interested if it’s possible in other languages?

regards,
Jeroen.

  • 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-23T17:22:36+00:00Added an answer on May 23, 2026 at 5:22 pm
    Path.prototype.concat = function () {
        this.concatting = true;
        return this;    
    };
    
    Path.prototype.reverse = function () {
        if (this.concatting) {
            Array.push.apply(
                this.pathArr,
                Array.slice(this.pathAr).reverse()
            );
            this.concatting = false;
        } else {
            this.pathAr.reverse();
        }
    
        return this;
    };
    
    var myPath = new Path().move().line().etc().concat().reverse();
    

    Not very elegant, but here you go.

    But I’m wondering is there a construct
    other and shorter than above to
    immediately assign the new Object to
    the variable definition?

    No, you can’t reference what hasn’t been created yet.


    You could do this as well:

    (myPath = new Path()).move().line().etc().etc.concat(myPath.reverse());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Now that JavaScript libraries like jQuery are more popular than ever, .js files are
What languages or platforms influenced the .NET 1.0 Team to build-in the concept of
I often need to display information based on or influenced by a user's actual
I am using Jquery Date pickers to get Start and End Dates for an
After reading about the System.Diagnostics.Contracts.Contract static class that has been influenced by the awesomeness
How can I make sure that my applicaiton User Interface is not influenced by
I want to make a program that will involve some faces with various facial
I've enabled editing mode and moving cells around to allow users to position table
Note: This question was influenced by this answer . The following is valid C
What tutorials or guides about features/techniques influenced the way you did something. Eg a

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.