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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T05:59:06+00:00 2026-05-14T05:59:06+00:00

I have an object which has several properties that are set when the object

  • 0

I have an object which has several properties that are set when the object is created.

This object recently changed to object literal notation, but I’ve hit a bit of a problem that searching on the net doesn’t reveal.

Simply stated I need to do this:

Star = function(_id, _x, _y, _n, _o, _im, _c, _b, _links) {
    var self = {
        id: _id,
        // other properties
        links: [],
        for (var i=0,j=0;i<8;i++) { //<- doesn't like this line
            var k = parseInt(_links[i]);
            if (k > 0) {
                this.links[j++] = k;
            }
        },
        // other methods
    };
    return self;
};

How do I initialise a property in the constructor in object literal notation?

  • 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-14T05:59:06+00:00Added an answer on May 14, 2026 at 5:59 am
    1. You can create the array on the fly using an anonymous function:

      Star = function(_id, _x, _y, _n, _o, _im, _c, _b, _links) {
          var self = {
              id: _id,
              // other properties
              links: (function() {
                  var a = [];
                  for (var i=0;i<8;i++) {
                      var k = parseInt(_links[i]);
                      if (k > 0) {
                          a.push(k);
                      }
                  }
                  return a;
              })(),
              // other methods
          };
          return self;
      };
      
    2. You can do it after the literal is defined:

      Star = function(_id, _x, _y, _n, _o, _im, _c, _b, _links) {
          var self = {
              id: _id,
              // other properties
              links: [],
              // other methods
          };
          for (var i=0,j=0;i<8;i++) {
              var k = parseInt(_links[i]);
              if (k > 0) {
                  self.links[j++] = k;
              }
          }
          return self;
      };
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an object config which has some properties. I can export this ok,
I have an object that has several properties. If I have a pointer to
In this hypothetical example, imagine I have an object FooSet that has five properties
I have a SelectItem object which has a few items. I set a value
I have a JPA object which has a many-to-many relationship like this: @Entity public
I have an object of class Level that has several subsystems (child objects) it
I have a domain object that has a couple of Uri properties that need
I have a custom NSManagedObject which has several properties. I alloc and init two
I have several final properties defined in a Java class with constructor which has
I have an Address object that has properties AddressLine1, AddressLine2, Suburb, State, ZipCode. (there

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.