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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:37:16+00:00 2026-05-25T02:37:16+00:00

Not sure what to search for here, so apologies if I’m repeating another question.

  • 0

Not sure what to search for here, so apologies if I’m repeating another question.

I’m wondering if there are any issues that I’m not aware of with using the following syntax in JavaScript:

var a = {};

var b = a.niceCoat = {};

Seems handy, but I just want to make sure…

  • 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-25T02:37:17+00:00Added an answer on May 25, 2026 at 2:37 am

    That is perfectly fine, because a was declared previously. The expressions will be evaluated as

    var a = {};
    var b = (a.niceCoat = {});
    

    I.e. it first assigns a new empty object to a.niceCoat and the result (the result of an assignment is the assigned value) to b.

    But be aware of something like

    var a = b = 'c';
    

    which, again, is evaluated as

    var a = (b = 'c');
    

    Only a will be in local scope, b would be global. If you want b to be local too, you have to declare it beforehand: var b;. Something like var a = var b = .... does not work (not valid syntax).


    Slightly off topic:

    This method is indeed handy. Imaging you have an object of objects, something like:

    var map = {
        foo: {},
        bar: {}
    };
    

    and you want to get the object for a certain key or create a new one if the key does not exists. Normally one would probably do:

    var obj = map[key];
    if(!obj) { // works because if the key is set, it is an object 
        obj = {}; //                                        which evals to true
        map[key] = obj;
    }
    // now work with obj
    

    With the above method, this can be shortened to

    var obj = map[key];
    if(!obj) {
        map[key] = obj = {};
    }
    

    And we can make it even shorter with the logical OR operator (||):

    var obj = map[key] || (map[key] = {});
    

    (though it might be less readable).

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

Sidebar

Related Questions

Small problem here with an MVC app that I'm not sure how to figure
This is possibly a newbie question, but I'm not sure what terms to search
I might be missing something here, I'm not sure. A Google search didn't really
I'm not sure how to search for this answer, so I'll go ahead and
I'm not sure about clarity of the STAR word. I'm implementing a search method
i've playing around with mysql's full text search and I'm not sure if it
I'm not even sure what this principle is called or how to search for
I'm trying to create a simple search page, but I'm not 100% sure how
Not sure what exactly is going on here, but seems like in .NET 1.1
Not sure if the title is quite right for the question but I can't

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.